diff options
author | Marvin Borner | 2019-01-23 22:31:53 +0100 |
---|---|---|
committer | Marvin Borner | 2019-01-23 22:31:53 +0100 |
commit | 4603dd25d9d448e3c8d9d1280cb59c9a66906cf7 (patch) | |
tree | 0346966052e5b67d219ab6eb5f3daf3014bec628 /public/scripts/2_encryption.js | |
parent | 9c462ef4be0a7510607ac1d06b57cbe97e71d26a (diff) |
Added prettier exporting and encryption check
Diffstat (limited to 'public/scripts/2_encryption.js')
-rw-r--r-- | public/scripts/2_encryption.js | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/public/scripts/2_encryption.js b/public/scripts/2_encryption.js index 4d05780..9140a3a 100644 --- a/public/scripts/2_encryption.js +++ b/public/scripts/2_encryption.js @@ -16,10 +16,11 @@ async function generateKeys(userId, passphrase) { passphrase: passphrase }; - openpgp.generateKey(options).then((key) => { + await openpgp.generateKey(options).then((key) => { localStorage.setItem('private_key', key.privateKeyArmored); localStorage.setItem('public_key', key.publicKeyArmored); localStorage.setItem('revocation_certificate', key.revocationCertificate); + console.log('[LOG] Successfully generated and stored keys!') }); } @@ -72,6 +73,17 @@ async function decrypt(data, publicKey, privateKey, passphrase) { } /** + * Checks whether the user has keys + * @returns {boolean} + */ +function isEncrypted() { + const hasPrivateKey = localStorage.getItem('private_key') !== null; + const hasPublicKey = localStorage.getItem('public_key') !== null; + const hasRevocationCertificate = localStorage.getItem('revocation_certificate') !== null; + return (hasPrivateKey && hasPublicKey && hasRevocationCertificate); +} + +/** * Just a general test case */ function testEncryption() { @@ -85,9 +97,8 @@ function testEncryption() { }) } -// TODO: Export as module or sth -// REMEMBER: UGLY EXPORT! -window.generateKeys = generateKeys; -window.encrypt = encrypt; -window.decrypt = decrypt; -window.testEncryption = testEncryption; +exports.generate = generateKeys; +exports.encrypt = encrypt; +exports.decrypt = decrypt; +exports.check = isEncrypted; +exports.test = testEncryption; |