diff options
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, }, |