Merge branch 'dev' of codeberg.org:keyoxide/web into dev

This commit is contained in:
Yarmo Mackenbach 2020-07-27 21:24:31 +02:00
commit e97fb27c0e
5 changed files with 65 additions and 0 deletions

View file

@ -39,5 +39,11 @@
<a href="/guides/feature-comparison-keybase">Feature comparison with Keybase</a><br>
<a href="/guides/migrating-from-keybase">Migrating from Keybase</a><br>
</div>
<div class="guides__section">
<h3>Managing proofs in GnuPG</h3>
<a href="/guides/managing-proofs-listing">Listing proofs</a><br>
<a href="/guides/managing-proofs-deleting">Deleting proofs</a><br>
</div>
</div>
</div>

View file

@ -0,0 +1,34 @@
<p>Over time, you may need to delete proofs. Changing proofs can be achieved by deleting proofs and adding new ones.</p>
<h3>Delete all proofs</h3>
<p>First, edit the key (make sure to replace FINGERPRINT):</p>
<code>gpg --edit-key FINGERPRINT</code>
<p>Launch the notation prompt:</p>
<code>notation</code>
<p>Enter the 'none' notation to delete all notations:</p>
<code>none</code>
<p>Save the changes:</p>
<code>save</code>
<h3>Delete one of your proofs</h3>
<p>First, edit the key (make sure to replace FINGERPRINT):</p>
<code>gpg --edit-key FINGERPRINT</code>
<p>Launch the notation prompt:</p>
<code>notation</code>
<p>Enter the <b>-</b> (minus) symbol followed by the proof you want to delete. Make sure you type the proof exactly like it is in your key.</p>
<code>-proof@metacode.biz=dns:yourdomain.org?type=TXT</code>
<p><i>To make it easier to enter the right proof, you could first <a href="managing-proofs-listing">list all proofs</a> and simply copy the proof (including "proof@metacode.biz=") you want to delete.</i></p>
<p>Save the changes:</p>
<code>save</code>
<p>Upload the key to WKD or use the following command to upload the key to <a href="https://keys.openpgp.org">keys.openpgp.org</a> (make sure to replace FINGERPRINT):</p>
<code>gpg --keyserver hkps://keys.openpgp.org --send-keys FINGERPRINT</code>

View file

@ -0,0 +1 @@
Deleting Proofs using GnuPG

View file

@ -0,0 +1,23 @@
<p>Let's list the identity proofs stored in our OpenPGP keys.</p>
<h3>Listing notations in GnuPG</h3>
<p>First, edit the key (make sure to replace FINGERPRINT):</p>
<code>gpg --edit-key FINGERPRINT</code>
<p>List detailed preferences:</p>
<code>showpref</code>
<p>You should now see your key details, uid, and proofs assigned to your keys:</p>
<code>
[ultimate] (1). Your Name <your@email>
Cipher: AES256, AES192, AES, 3DES
Digest: SHA512, SHA384, SHA256, SHA1
Compression: ZLIB, BZIP2, ZIP, Uncompressed
Features: MDC, Keyserver no-modify
Notations: proof@metacode.biz=https://gist.github.com/youruser/somehash
proof@metacode.biz=dns:yourdomain.org?type=TXT
</code>
<p>Exit gpg:</p>
<code>quit</code>

View file

@ -0,0 +1 @@
Listing Proofs using GnuPG