-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
30 lines (28 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>OpenPGP key to paper</title>
<script type="text/javascript" src="base64.js"></script>
<script type="text/javascript" src="sha1.js"></script>
<script type="text/javascript" src="PGpubkey.js"></script>
<script type="text/javascript" src="jquery-1.6.1.min.js"></script>
<script type="text/javascript" src="qrcode.js"></script>
<script type="text/javascript" src="keysheet.js"></script>
<link rel="stylesheet" href="keysheet.css" type="text/css" />
</head>
<body>
<div id="container"></div>
<form id="keyForm">
<p class="instructions">Paste your public PGP key below.<br />
It must start with <code>-----BEGIN PGP PUBLIC KEY BLOCK-----</code><br />
and end with <code>-----END PGP PUBLIC KEY BLOCK-----</code>.<br />
With gpg: <code>gpg -a --export you@example.net</code>
</p>
<textarea autofocus="autofocus" placeholder="Public PGP key, ASCII armored" id="key" name="key"></textarea>
<p class="instructions">
<strong>Don't forget to check that the fingerprint in the printout matches the one you expect!</strong></p>
</form>
<div id="options"></div>
</body>
</html>