From 8607657f2a8ce5e5ba4edd5657518a29fcb21cec Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 24 Feb 2019 14:15:24 +0100 Subject: Fixed bug with different fingerprint on reboot --- public/scripts/encryption.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'public') 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, }, -- cgit v1.2.3