diff options
author | Marvin Borner | 2019-01-23 18:11:19 +0100 |
---|---|---|
committer | Marvin Borner | 2019-01-23 18:11:19 +0100 |
commit | 0c45bde84c27b736f158dee07f77ef5cc9654730 (patch) | |
tree | 4988dcac9a9dcae1969907da10d5df7a32ccdd24 /public | |
parent | 3a876b2f3bd7d41b3a720ac48a831d41c425dbbc (diff) |
Added documentation to some functions
Diffstat (limited to 'public')
-rw-r--r-- | public/scripts/2_encryption.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/public/scripts/2_encryption.js b/public/scripts/2_encryption.js index b678606..05b4b69 100644 --- a/public/scripts/2_encryption.js +++ b/public/scripts/2_encryption.js @@ -23,6 +23,12 @@ async function generateKeys(userId, passphrase) { }); } +/** + * Encrypts the data with a public key (e.g the one of the person with which you're chatting) + * @param data + * @param publicKey + * @returns {Promise<void>} + */ async function encrypt(data, publicKey) { //const privateKeyObj = (await openpgp.key.readArmored(privateKey)).keys[0]; //await privateKeyObj.decrypt(passphrase); @@ -40,6 +46,14 @@ async function encrypt(data, publicKey) { }) } +/** + * Decrypts encrypted data with own encrypted private key and verifies the data with the public key + * @param data + * @param publicKey + * @param privateKey + * @param passphrase + * @returns {Promise<void>} + */ async function decrypt(data, publicKey, privateKey, passphrase) { const privateKeyObj = (await openpgp.key.readArmored(privateKey)).keys[0]; await privateKeyObj.decrypt(passphrase); @@ -57,6 +71,9 @@ async function decrypt(data, publicKey, privateKey, passphrase) { }) } +/** + * Just a general test case + */ function testEncryption() { generateKeys('test_id', 'supersecure').then(() => { encrypt('The meaning of life', localStorage.getItem('public_key')).then(() => { |