diff options
author | Marvin Borner | 2019-02-24 14:15:24 +0100 |
---|---|---|
committer | Marvin Borner | 2019-02-24 14:15:24 +0100 |
commit | 8607657f2a8ce5e5ba4edd5657518a29fcb21cec (patch) | |
tree | fc7ff712625f71547b8df92aaa956829613e60bc /public | |
parent | c96711d83fd5e3e7b68d67e78cd1da994cb7f14c (diff) |
Fixed bug with different fingerprint on reboot
Diffstat (limited to 'public')
-rw-r--r-- | public/scripts/encryption.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/scripts/encryption.js b/public/scripts/encryption.js index dd36ae1..4c0ab22 100644 --- a/public/scripts/encryption.js +++ b/public/scripts/encryption.js @@ -331,13 +331,12 @@ const self = module.exports = { */ generatePrivateFingerprint: passphrase => fingerprintJs.getPromise({ excludes: { + enumerateDevices: true, screenResolution: true, availableScreenResolution: true, }, }) .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}`); @@ -357,6 +356,7 @@ const self = module.exports = { */ generatePublicFingerprint: () => fingerprintJs.getPromise({ excludes: { + enumerateDevices: true, screenResolution: true, availableScreenResolution: true, }, |