-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
88 lines (87 loc) · 5.03 KB
/
index.html
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<html>
<head>
<title>browserPGP</title>
<meta charset="UTF-8">
<meta name="description" content="PGP 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">
<link rel="icon" type='image/png' sizes='256x256' href="/256.png"/>
<link rel="stylesheet" href="bootstrap.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="favicon.js"></script>
<script src="sha1.min.js"></script>
<script src="jquery.min.js"></script>
<script src="bootstrap.min.js"></script>
<style>
html, body {
height: 95%;
}
div.main {
padding:20px;
height: 100%;
}
</style>
<style>.bmc-button img{width: 27px !important;margin-bottom: 1px !important;box-shadow: none !important;border: none !important;vertical-align: middle !important;}.bmc-button{line-height: 36px !important;height:37px !important;text-decoration: none !important;display:inline-flex !important;color:#ffffff !important;background-color:#FF813F !important;border-radius: 3px !important;border: 1px solid transparent !important;padding: 1px 9px !important;font-size: 22px !important;letter-spacing:0.6px !important;box-shadow: 0px 1px 2px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 1px 2px 2px rgba(190, 190, 190, 0.5) !important;margin: 0 auto !important;-webkit-box-sizing: border-box !important;box-sizing: border-box !important;-o-transition: 0.3s all linear !important;-webkit-transition: 0.3s all linear !important;-moz-transition: 0.3s all linear !important;-ms-transition: 0.3s all linear !important;transition: 0.3s all linear !important;}.bmc-button:hover, .bmc-button:active, .bmc-button:focus {-webkit-box-shadow: 0px 1px 2px 2px rgba(190, 190, 190, 0.5) !important;text-decoration: none !important;box-shadow: 0px 1px 2px 2px rgba(190, 190, 190, 0.5) !important;opacity: 0.85 !important;color:#ffffff !important;}</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="/">
<img src="/logo.svg" width="30" height="30" class="d-inline-block align-top" alt="">
browserPGP
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="/">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/gen.html">Key Generator</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/encrypt.html">Encrypt</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/decrypt.html">Decrypt</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/sign.html">Sign</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/verify.html">Verify</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/compatibility.html">Compatibility</a>
</li>
</ul>
</div>
</nav>
<div class="main">
<div class="container">
<div class="row">
<div class="col-sm">
<h1 class="display-4">browserPGP</h1>
<p>A website that makes using PGP simple and secure. All work is done client side, so no private data leaves your computer. The JavaScript OpenPGP library used is maintained by <a href="https://protonmail.com/blog/openpgpjs-email-encryption/" target="_blank">ProtonMail</a>.<br><br>If you want to be extra secure, download the site files <a href="https://github.com/browserPGP/browserPGP.github.io/archive/master.zip">here</a>, extract them, disable your internet and open index.html.<br><br>- ar0n#1462</p>
<div id="worksCheck"></div>
<noscript><br><div class="alert alert-danger" role="alert">This website requires JavaScript to function, please enable it.</div></noscript>
</div>
<div class="col-sm">
<img class="img-fluid" src="pgp.png">
<p class="text-center text-muted"><small>PGP encrypt/decrypt diagram</small></p>
</div>
</div>
</div>
</div>
</body>
<script src="openpgp.min.js"></script>
<script src="baffle.min.js"></script>
<script>
if (typeof openpgp.config === "object") {
document.getElementById('worksCheck').insertAdjacentHTML('beforeend', '<div class="alert alert-success" role="alert">' + openpgp.config.versionstring + ' works in this browser!</div>');
} else {
document.getElementById('worksCheck').insertAdjacentHTML('beforeend', '<div class="alert alert-danger" role="alert">OpenPGP.js won\'t start in this browser. Do a <a href="/compatibility.html">compatibility check.</a></div>');
}
</script>
</html>