This repository has been archived by the owner on Aug 24, 2019. It is now read-only.
forked from mattrude/pgpkeyserver-lite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
219 lines (218 loc) · 10.8 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="OpenPGP Keyserver">
<title>OpenPGP Keyserver</title>
<link rel="icon" href="/favicon.ico" type="image/x-icon"/>
<link href="assets/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<style type="text/css">
html,body {
height: 100%;
}
#wrap {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -60px;
}
#push,#footer {
height: 60px;
}
#footer {
background-color: #f5f5f5;
}
.container .credit {
margin: 20px 0;
}
</style>
</head>
<body>
<div id="wrap">
<div class="container">
<div class="page-header" id="banner" style="border-bottom: 0px;">
<div class="row">
<div class="col-lg-12">
<h1 class="text-center"><strong>OpenPGP</strong>keyserver</h1>
</div>
</div>
</div>
</div><!--closing page header container-->
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<form action="/pks/lookup" method="get" class="form" role="form">
<div class="control-group">
<div class="controls" style="max-width:30em; margin:0 auto;">
<input name="search" class="form-control" type="text" placeholder="Search for an OpenPGP Public Key, ie 0x..." style="font-size: 1.5em; line-height: 1.5em; height: 2em;" required autofocus />
</div>
</div>
<div class="control-group text-center" style="margin-top: 0.5em;">
<div class="controls">
<button type="submit" class="btn btn-primary">
<span class="glyphicon glyphicon-search"></span>
Search Key
</button>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal">
<span class="glyphicon glyphicon-cloud-upload"></span>
Submit Key
</button>
</div>
</div>
<div class="text-center" style="margin-top: 0.5em;">
<a data-toggle="collapse" data-target="#advancedOptionsCollapse" href="#">Advanced Options</a>
</div>
<div id="advancedOptionsCollapse" class="collapse">
<div class="control-group col-md-4 col-md-offset-2">
<div class="controls">
Index Options:
<label class="checkbox" for="fingerprint">
<input id="fingerprint" type="checkbox" name="fingerprint" checked="checked" />
Show OpenPGP fingerprints
</label>
<label class="checkbox" for="hash">
<input id="hash" type="checkbox" name="hash" />
Show full-key hashes
</label>
<label class="checkbox" for="exact">
<input id="exact" type="checkbox" name="exact" value="on" />
Only return exact matches
</label>
<label class="checkbox" for="mr">
<input id="mr" type="checkbox" name="options" value="mr" />
Machine readable
</label>
</div>
</div>
<div class="control-group col-md-offset-6">
<div class="controls">
Index type:
<label class="radio" for="radios-0">
<input name="op" id="radios-0" value="index" checked="checked" type="radio">
Get regular index of matching keys
</label>
<label class="radio" for="radios-1">
<input name="op" id="radios-1" value="vindex" type="radio">
Get <strong>verbose</strong> index of matching keys
</label>
<label class="radio" for="radios-2">
<input name="op" id="radios-2" value="get" type="radio">
retrieve ascii-armored keys
</label>
<label class="radio" for="radios-3">
<input name="op" id="radios-3" value="hget" type="radio">
retrieve keys by full-key hash
</label>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">Submit Your OpenPGP Public Key</h4>
</div>
<div class="modal-body">
<form action="/pks/add" method="post" id="keySubmitForm">
<div class="control-group">
<div class="controls">
<textarea id="textarea" name="keytext" rows="20" style="width: 100%;font-family:Courier;font-size:12px;" placeholder="Enter your ASCII-armored OpenPGP public key here" required ></textarea>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="submit" class="btn btn-primary">
<span class="glyphicon glyphicon-cloud-upload"></span>
Submit Public Key
</button>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="modal fade" id="contact" tabindex="-1" role="dialog" aria-labelledby="ContactLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="ContactLabel">###ENTERNAMEHERE###'s OpenPGP Public Key</h4>
</div>
<div class="modal-body">
<p>If you have any issues or concerns about this site, or if you wish to peer with this server, please contact me via the email address within the below public key.</p>
<pre>
###ENTERPUBLICKEYHERE###
</pre>
</div>
</div>
</div>
</div>
<div class="modal fade" id="about" tabindex="-1" role="dialog" aria-labelledby="AboutLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="AboutLabel">About this Server</h4>
</div>
<div class="modal-body">
<p><strong>OpenPGP</strong> is a method of encrypting and/or signing data (for example an email) in a secure “<em>end to end</em>” way.
This means, the message is encrypted on your computer, using the recipient’s public key,
in a way that the e-mail server has no knowledge of the content of the message.
The recipient of the message then decrypts the message on their own computer using their private key.</p>
<p>This server is a member of the <a href="https://sks-keyservers.net" target="_blank">sks-keyserver</a> pool of servers. It hosts OpenPGP keys in a fashion that allows them to be quickly and easily retrieved and used by different client software.</p>
<p>You may connect to this server by adding one of the following entries to your OpenPGP client software.</p>
<div class="col-md-6">
<ul>
<li>pool.sks-keyservers.net</li>
<li>na.pool.sks-keyservers.net</li>
<li>eu.pool.sks-keyservers.net</li>
<li>oc.pool.sks-keyservers.net</li>
</ul>
</div>
<div class="col-md-offset-6">
<ul>
<li>p80.pool.sks-keyservers.net</li>
<li>ipv4.pool.sks-keyservers.net</li>
<li>ipv6.pool.sks-keyservers.net</li>
<li>subset.pool.sks-keyservers.net</li>
</ul>
</div>
<p><b>Note:</b> <i>keys.gnupg.net</i> and <i>pgp.ipfire.org</i> are both alias for pool.sks-keyservers.net. Requests sent to either of these hosts will also be served by this server.</p>
<hr />
<h5>OpenPGP Resources</h5>
<ul>
<li><a href="https://gnupg.org/" target="_blank">GnuPG Homepage</a> - The main location for the OpenPGP Standard.</li>
<li><a href="https://sks-keyservers.net/" target="_blank">SKS Keyserver Homepage</a> - The keyserver software running on this server.</li>
<li><a href="http://www.pgp.com/" target="_blank">PGP Inc.</a> - The historical home of PGP, but has since been sold to Symantec.</li>
<li><a href="https://emailselfdefense.fsf.org/en/" target="_blank">Email Self-defense</a> - A teaching site about how to use OpenPGP to communicate.</li>
<li><a href="http://en.wikipedia.org/wiki/Pretty_Good_Privacy" target="_blank">Wikipedia - Pretty Good Privacy</a> - A nice overview of what OpenPGP is.</li>
</ul>
</div>
</div>
</div>
</div>
</div><!--Closing content wrap-->
<div id="footer">
<div class="container">
<div style="max-width: 20em; float: left;" >
<p class="muted credit small">
<a href="#" data-toggle="modal" data-target="#about">about</a> |
<a href="/pks/lookup?op=stats">statistics</a>
</p>
</div>
<div style="float:right;">
<p class="muted credit small">Provided as a public service by <a href="#" data-toggle="modal" data-target="#contact">###ENTERNAMEHERE###</a>.</p>
</div>
</div>
</div>
<script src="assets/jquery/3.2.1/jquery.min.js"></script>
<script src="assets/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="assets/jqBootstrapValidation.js/1.3.7/jqBootstrapValidation-1.3.7.min.js"></script>
</body>
</html>