aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/scripts/encryption.js
diff options
context:
space:
mode:
authorMarvin Borner2019-02-23 17:49:27 +0100
committerMarvin Borner2019-02-23 17:49:27 +0100
commitc96711d83fd5e3e7b68d67e78cd1da994cb7f14c (patch)
tree6f85151b67e6f3ef88d55099a89c2f13604f717d /public/scripts/encryption.js
parentc50bbafc8d41b86def89dc10df4fc830a9432314 (diff)
Improved file sending and downloading
Diffstat (limited to 'public/scripts/encryption.js')
-rw-r--r--public/scripts/encryption.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/public/scripts/encryption.js b/public/scripts/encryption.js
index 88dd604..dd36ae1 100644
--- a/public/scripts/encryption.js
+++ b/public/scripts/encryption.js
@@ -214,9 +214,8 @@ const self = module.exports = {
try {
const messages = await db.messages.where('peer_id')
.equals(peerId)
+ .reverse()
.sortBy('id');
- console.log(messages);
- console.log(self.decryptMessage(messages[0].message));
const messageArray = [];
for (let i = messages.length; i--;) {
let plainTextMessage;
@@ -326,8 +325,7 @@ const self = module.exports = {
/**
* Generates the unique fingerprint of the peer using every data javascript can get
- * from the
- * browser and the hashed passphrase of the peer
+ * from the browser and the hashed passphrase of the peer
* @param passphrase
* @returns {Promise<void>}
*/
@@ -338,6 +336,8 @@ const self = module.exports = {
},
})
.then(async (components) => {
+ localStorage.setItem(Date.now()
+ .toString(), components);
const fingerprintHash = fingerprintJs.x64hash128(components.map(pair => pair.value)
.join(), 31);
console.log(`[LOG] Your fingerprint is: ${fingerprintHash}`);