aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/scripts/2_encryption.js
blob: b6786063d6ba8c12c22b86aa24ba924cd1a7c6d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const openpgp = require('openpgp');
//openpgp.initWorker({ path:'openpgp.worker.js' }); // TODO: Add openpgp web worker support

let encrypted, decrypted; // REMEMBER: Remove testing variables (leaking)

/**
 * Generates and stores encrypted private key, public key and a revocation certificate
 * @param userId
 * @param passphrase
 * @returns {Promise<void>}
 */
async function generateKeys(userId, passphrase) {
    const options = {
        userIds: [{name: userId}],
        numBits: 4096,
        passphrase: passphrase
    };

    openpgp.generateKey(options).then((key) => {
        localStorage.setItem('private_key', key.privateKeyArmored);
        localStorage.setItem('public_key', key.publicKeyArmored);
        localStorage.setItem('revocation_certificate', key.revocationCertificate);
    });
}

async function encrypt(data, publicKey) {
    //const privateKeyObj = (await openpgp.key.readArmored(privateKey)).keys[0];
    //await privateKeyObj.decrypt(passphrase);

    const options = {
        message: openpgp.message.fromText(data),
        publicKeys: (await openpgp.key.readArmored(publicKey)).keys,
        //privateKeys: [privateKeyObj] TODO: Use private key for signing
    };

    await openpgp.encrypt(options).then(ciphertext => {
        encrypted = ciphertext.data;
        console.log(encrypted);
        //return encrypted; // TODO: Return encrypted from async function
    })
}

async function decrypt(data, publicKey, privateKey, passphrase) {
    const privateKeyObj = (await openpgp.key.readArmored(privateKey)).keys[0];
    await privateKeyObj.decrypt(passphrase);

    const options = {
        message: await openpgp.message.readArmored(data),
        publicKeys: (await openpgp.key.readArmored(publicKey)).keys, // for verification
        privateKeys: [privateKeyObj]
    };

    await openpgp.decrypt(options).then(plaintext => {
        decrypted = plaintext.data;
        console.log(plaintext.data);
        //return plaintext.data
    })
}

function testEncryption() {
    generateKeys('test_id', 'supersecure').then(() => {
        encrypt('The meaning of life', localStorage.getItem('public_key')).then(() => {
            decrypt(encrypted, localStorage.getItem('public_key'), localStorage.getItem('private_key'), 'supersecure').then(() => {
                if (decrypted === 'The meaning of life')
                    console.log("YEEHA, Test succeeded!")
            })
        })
    })
}

testEncryption();