This commit is contained in:
unknown
2018-11-14 16:39:01 +00:00
7 changed files with 59 additions and 48 deletions

View File

@@ -1,7 +1,7 @@
<html>
<head>
<title>browserPGP | Key Gen</title>
<meta name="description" content="Generate PGP keys in browser, simple and secure.">
<meta name="description" content="Generate PGP keys in browser, simple and secure." />
<meta name="keywords" content="browserPGP,PGP,OpenPGP,online,browser,javascript,github,live,secure,key generator,key gen,encrypt,decrypt,sign,verify,signature">
<meta name="author" content="ar0n#1462">
@@ -18,7 +18,7 @@
const encryptDecryptFunction = async() => {
document.getElementById("progressbar").className = "progress-bar progress-bar-striped progress-bar-animated";
var options = {
const options = {
userIds: [{ name:document.getElementById("name").value, email:document.getElementById("email").value }], // multiple user IDs
numBits: 4096, // RSA key size
passphrase: document.getElementById("pass").value // protects the private key
@@ -59,6 +59,9 @@
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="/">About</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="/gen.html">Key Generator</a>
</li>