aboutsummaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
authorMarvin Borner2019-01-23 18:11:19 +0100
committerMarvin Borner2019-01-23 18:11:19 +0100
commit0c45bde84c27b736f158dee07f77ef5cc9654730 (patch)
tree4988dcac9a9dcae1969907da10d5df7a32ccdd24 /public
parent3a876b2f3bd7d41b3a720ac48a831d41c425dbbc (diff)
Added documentation to some functions
Diffstat (limited to 'public')
-rw-r--r--public/scripts/2_encryption.js17
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(() => {