diff options
author | Marvin Borner | 2019-01-27 20:24:58 +0100 |
---|---|---|
committer | Marvin Borner | 2019-01-27 20:24:58 +0100 |
commit | 09e19217eb965b5afc3b7c72d6fd9b188fa78049 (patch) | |
tree | b8f64357900b9e6bbf08004d1fc1aae332f79ff2 /public/scripts/encryption.js | |
parent | 517736ae1d3813fb3bc7e32c36cd90906d530b91 (diff) |
Added static peer id and peer verification
Diffstat (limited to 'public/scripts/encryption.js')
-rw-r--r-- | public/scripts/encryption.js | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/public/scripts/encryption.js b/public/scripts/encryption.js index 81a592a..323a5e0 100644 --- a/public/scripts/encryption.js +++ b/public/scripts/encryption.js @@ -163,8 +163,7 @@ async function getPeerPublicKey(peerId) { let publicKey; if (res.length > 0) { publicKey = res[0]['key_data']; - const publicKeyUserId = (await (await openpgp.key.readArmored(publicKey)).keys[0].getPrimaryUser() - .then(obj => obj.user.userId.userid)); + const publicKeyUserId = await getPublicKeyUserId(publicKey); if (publicKeyUserId !== peerId) { publicKey = ''; console.error('[LOG] Public key verification failed! The peers real identity is ' + publicKeyUserId) @@ -177,28 +176,24 @@ async function getPeerPublicKey(peerId) { } /** + * Returns user id of a public key + * @param publicKey + * @returns {Promise<String>} + */ +async function getPublicKeyUserId(publicKey) { + return await (await openpgp.key.readArmored(publicKey)).keys[0].getPrimaryUser().then(obj => obj.user.userId.userid) || ''; +} + +/** * Resets the database/encryption */ function reset() { db.delete(); localStorage.removeItem('database'); + localStorage.removeItem('peer_id'); console.log('[LOG] Database has been deleted!') } -/** - * Just a general test case - */ -function testEncryption() { - generateKeys('test_id', 'supersecure').then(() => { - encrypt('The meaning of life', getPublicKey()).then(encrypted => { - decrypt(encrypted, getPublicKey(), getPrivateKey(), 'supersecure').then(decrypted => { - if (decrypted === 'The meaning of life') - console.log("YEEHA, Test succeeded!") - }) - }) - }) -} - exports.setup = setupDatabase; exports.generate = generateKeys; exports.getPrivate = getPrivateKey; @@ -209,5 +204,5 @@ exports.decryptPrivate = decryptPrivateKey; exports.check = isEncrypted; exports.store = storePeerPublicKey; exports.get = getPeerPublicKey; +exports.getId = getPublicKeyUserId; exports.reset = reset; -exports.test = testEncryption; |