diff options
author | Marvin Borner | 2019-02-17 16:26:46 +0100 |
---|---|---|
committer | Marvin Borner | 2019-02-17 16:26:46 +0100 |
commit | 8e282ad2fc493aad7eed6c2d1cadbbe9495b1d52 (patch) | |
tree | 33abfdda2234c92640196b6c155d9e640bf42676 /public/scripts/encryption.js | |
parent | ad3dcd204b4274f7315a9715383d99fb3edede21 (diff) |
Began implementing of autocompletion
Diffstat (limited to 'public/scripts/encryption.js')
-rw-r--r-- | public/scripts/encryption.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/scripts/encryption.js b/public/scripts/encryption.js index 735cc33..415a355 100644 --- a/public/scripts/encryption.js +++ b/public/scripts/encryption.js @@ -326,7 +326,7 @@ const self = module.exports = { .then(async (components) => { const fingerprintHash = fingerprintJs.x64hash128(components.map(pair => pair.value) .join(), 31); - console.log(fingerprintHash); + console.log(`[LOG] Your fingerprint is: ${fingerprintHash}`); let shaObj = new JsSHA('SHA3-512', 'TEXT'); shaObj.update(passphrase); const passphraseHash = shaObj.getHash('HEX'); |