diff options
author | Marvin Borner | 2019-02-12 22:24:18 +0100 |
---|---|---|
committer | Marvin Borner | 2019-02-12 22:24:18 +0100 |
commit | d03bd796d63b0c17aea457acd61353e62da21632 (patch) | |
tree | c147e5f1527deded7f68683246f31c5251b75e88 /public/scripts/encryption.js | |
parent | fc9a421b4b1a01215f2a5cc51155435efadd2917 (diff) |
Added unique fingerprint function (although it's not working)
Diffstat (limited to 'public/scripts/encryption.js')
-rw-r--r-- | public/scripts/encryption.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/public/scripts/encryption.js b/public/scripts/encryption.js index fc5665b..4e3eeb4 100644 --- a/public/scripts/encryption.js +++ b/public/scripts/encryption.js @@ -8,6 +8,8 @@ const Dexie = require('dexie'); const moment = require('moment'); const crypto = require('crypto'); +const jsSHA = require("jssha"); +const fingerprint = require('fingerprintjs2'); const openpgp = require('openpgp'); const swal = require('sweetalert'); @@ -248,6 +250,21 @@ async function getPeerPublicKey(peerId) { } /** + * Gets the unique fingerprint of the user + * @param passphrase + * @returns {Promise<String>} + */ +async function getUniqueFingerprint(passphrase) { + return await fingerprint.get(components => { + const passphraseHash = new Buffer(crypto.createHmac('SHA256', passphrase).update(passphrase).digest('hex')).toString('HEX'); + const userFingerprint = fingerprint.x64hash128(components.map(pair => pair.value).join(), 31); + console.log(passphraseHash + " - " + userFingerprint); + console.log(new Buffer(crypto.createHmac('SHA256', userFingerprint + passphraseHash).update(userFingerprint + passphraseHash).digest('hex')).toString('HEX')); + return new Buffer(crypto.createHmac('SHA256', userFingerprint + passphraseHash).update(userFingerprint + passphraseHash).digest('hex')).toString('HEX'); + }) +} + +/** * Returns user id of a public key * @param publicKey * @returns {Promise<String>} @@ -279,4 +296,5 @@ exports.getMsgs = getMessages; exports.store = storePeerPublicKey; exports.get = getPeerPublicKey; exports.getId = getPublicKeyUserId; +exports.getFingerprint = getUniqueFingerprint; exports.reset = reset; |