hagrid-keyserver--hagrid/dist/templates/about/usage.html.hbs

107 lines
4.2 KiB
Handlebars
Raw Normal View History

2019-05-17 20:31:04 +00:00
{{#> layout }}
<div class="about usage">
2019-06-12 12:02:45 +00:00
<center><h2><a href="/about">About</a> | <a href="/about/news">News</a> | Usage | <a href="/about/faq">FAQ</a> | <a href="/about/privacy">Privacy Policy</a></h2></center>
2019-05-17 20:31:04 +00:00
<p>
On this page, we collect information on how to use
<span class="brand">keys.openpgp.org</span> with different OpenPGP
software products.<br />
We are still in the process of adding more. If you are missing some, please
write to us and we'll try to add it.
</p>
<h2 style="margin-left: 3%;"><img src="/assets/img/enigmail.svg" style="display: inline; height: 2em; vertical-align: -30%; padding-right: 10px;" /> Enigmail</h2>
<p>
Enigmail will support <span class="brand">keys.openpgp.org</span> out
of the box in an upcoming version. Stay tuned!
2019-05-17 20:31:04 +00:00
<ul>
<li>Keys will be kept up to date automatically.</li>
2019-05-17 20:31:04 +00:00
<li>During creation, you can optionally upload and verify your key.</li>
</ul>
</p>
<h2 style="margin-left: 3%;"><img src="/assets/img/openkeychain.svg" style="display: inline; height: 2em; vertical-align: -30%; padding-right: 10px;" /> OpenKeychain</h2>
<p>
OpenKeychain will support <span class="brand">keys.openpgp.org</span>
out of the box in an upcoming version. Stay tuned!
2019-05-17 20:31:04 +00:00
<ul>
<li>Keys will be kept up to date automatically.</li>
2019-05-17 20:31:04 +00:00
<li>During creation, you can optionally upload and verify your key.</li>
</ul>
</p>
<h2 style="margin-left: 3%;"><img src="/assets/img/gnupg.svg" style="display: inline; height: 2em; vertical-align: -30%; padding-right: 10px;" /> GnuPG</h2>
2019-06-05 12:33:02 +00:00
To configure GnuPG to use <span class="brand">keys.openpgp.org</span>
as keyserver, add this line to your <tt>gpg.conf</tt> file:
<blockquote>
keyserver hkps://keys.openpgp.org
</blockquote>
<h3>Retrieving keys</h3>
<ul>
<li>
To locate the key of a user, by email address:
<blockquote>gpg --auto-key-locate keyserver --locate-keys user@example.net</blockquote>
2019-06-05 12:33:02 +00:00
</li>
<li>To refresh all your keys (e.g. new revocation certificates and subkeys):
<blockquote>gpg --refresh</blockquote>
</li>
</ul>
<h3>Uploading your key</h3>
<p>
Keys can be uploaded with GnuPG's <tt>--send-keys</tt> command, but
identity information can't be verified that way to make the key
searchable by e-mail address (<a href="/about">what's that?</a>).
2019-05-17 20:31:04 +00:00
</p>
2019-06-05 12:33:02 +00:00
<ul>
<li>
You can try this shortcut for uploading your key, which outputs
a direct link to the verification page:
<blockquote>
gpg --export your_address@example.net | curl -T - {{base_uri}}
</blockquote>
</li>
<li>
Alternatively, you can export them to a file and enter that into the
<a href="/upload" target="_blank">upload</a> page:
<blockquote>
gpg --export your_address@example.net &gt; my_key.pub
</blockquote>
</li>
</ul>
2019-06-11 08:13:31 +00:00
<h3>Usage via Tor</h3>
<p>
For users who want to be extra-careful,
<span class="brand">keys.openpgp.org</span> can be reached anonymously as an
<a href="https://en.wikipedia.org/wiki/Tor_(anonymity_network)#Onion_services" target="_blank">onion service</a>.
If you have
<a href="https://www.torproject.org/" target="_blank">Tor</a>
installed, use the following configuration:
<blockquote>
keyserver zkaan2xfbuxia2wpf7ofnkbz6r5zdbbvxbunvp5g2iebopbfc4iqmbad.onion
</blockquote>
</p>
2019-06-12 12:02:45 +00:00
<h2 style="margin-left: 3%;">API</h2>
<p>
We offer an API integrated support in OpenPGP applications. Check out
our <a href="/about/api">API documentation</a>.
</p>
2019-05-17 20:31:04 +00:00
<h2 style="margin-left: 3%;">Others</h2>
<p>
Missing a guide for your favorite implementation? This site is
a work-in-progress, and we are looking to improve. Drop us a line at
<span class="email">support at keys dot openpgp dot org</span> if you
want to help out!
</p>
</div>
{{/layout}}