aboutsummaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
authorMarvin Borner2019-02-24 17:56:42 +0100
committerMarvin Borner2019-02-24 17:56:42 +0100
commit106e29607f85663e6fe224bed0ff3a41d6b6e5cf (patch)
tree8b507a60bed76d070532c2b98c55de937f46651b /public
parent08160492e22dd8da1cbb4decbb3481f5e6968201 (diff)
Fixed deployment
Diffstat (limited to 'public')
-rw-r--r--public/scripts/encryption.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/scripts/encryption.js b/public/scripts/encryption.js
index 0e76b43..ea9fc70 100644
--- a/public/scripts/encryption.js
+++ b/public/scripts/encryption.js
@@ -345,7 +345,6 @@ const self = module.exports = {
.then(async (components) => {
const fingerprintHash = fingerprintJs.x64hash128(components.map(pair => pair.value)
.join(), 31);
- console.log(`[LOG] Your fingerprint is: ${fingerprintHash}`);
let shaObj = new JsSHA('SHA3-512', 'TEXT');
shaObj.update(passphrase);
const passphraseHash = shaObj.getHash('HEX');
@@ -370,6 +369,7 @@ const self = module.exports = {
.then(async (components) => {
const fingerprintHash = fingerprintJs.x64hash128(components.map(pair => pair.value)
.join(), 31);
+ console.log(`[LOG] Your fingerprint is: ${fingerprintHash}`);
const shaObj = new JsSHA('SHA3-512', 'TEXT');
shaObj.update(fingerprintHash);
shaObj.update(Math.random()