From 84e758a59cea20508bad93a129acbad5d4474c5d Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 7 Jul 2018 16:13:20 +0200 Subject: Added public/private key generation & insertion --- resources/assets/js/initial_key_gen.js | 30 ++++++++++++++++++++++++++++++ resources/views/auth/login.blade.php | 4 +++- resources/views/auth/register.blade.php | 6 ++++-- 3 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 resources/assets/js/initial_key_gen.js (limited to 'resources') diff --git a/resources/assets/js/initial_key_gen.js b/resources/assets/js/initial_key_gen.js new file mode 100644 index 0000000..1b6875f --- /dev/null +++ b/resources/assets/js/initial_key_gen.js @@ -0,0 +1,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(); + }); +}); \ No newline at end of file diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php index 9fd12a7..119cfe1 100644 --- a/resources/views/auth/login.blade.php +++ b/resources/views/auth/login.blade.php @@ -1,6 +1,8 @@ @extends('layouts.app') @section('content') + +