aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/3fc17c73a369921b5d2a49b8e752592b.js
blob: 1b6875f322f576404b9abee62e5d47a3879f1cb1 (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
$('form[keygen]').submit((event) => {
    event.preventDefault();

    $('button[type="submit"]').attr("disabled", true).html('Loading...');

    var openpgp = window.openpgp;

    var options = {
        userIds: [{
            email: $("input#email").val()
        }],
        numBits: 4096,
        passphrase: $("input#password").val()
    };

    openpgp.generateKey(options).then((key) => {
        var privateKey = key.privateKeyArmored;
        var publicKey = key.publicKeyArmored;

        localStorage.setItem("privkey", privateKey);

        var now = new Date();
        var time = now.getTime();
        time += 3600 * 1000;
        now.setTime(time);
        document.cookie = "publickey=" + encodeURI(publicKey.substr(96).slice(0, -35)) + "; expires=" + now.toUTCString() + ";";

        $('form[keygen]').unbind('submit').submit();
    });
});