aboutsummaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
authorMarvin Borner2019-02-24 14:15:24 +0100
committerMarvin Borner2019-02-24 14:15:24 +0100
commit8607657f2a8ce5e5ba4edd5657518a29fcb21cec (patch)
treefc7ff712625f71547b8df92aaa956829613e60bc /public
parentc96711d83fd5e3e7b68d67e78cd1da994cb7f14c (diff)
Fixed bug with different fingerprint on reboot
Diffstat (limited to 'public')
-rw-r--r--public/scripts/encryption.js4
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,
},