Merge pull request 'Adding guides around listing and deleting proofs' (#15) from benoitj/keyoxide-web:dev into dev

Reviewed-on: https://codeberg.org/keyoxide/web/pulls/15
This commit is contained in:
Yarmo Mackenbach 2020-07-27 12:13:21 +02:00
commit cb7e8e968f
5 changed files with 63 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/feature-comparison-keybase">Feature comparison with Keybase</a><br>
<a href="/guides/migrating-from-keybase">Migrating from Keybase</a><br> <a href="/guides/migrating-from-keybase">Migrating from Keybase</a><br>
</div> </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>
</div> </div>

View file

@ -0,0 +1,32 @@
<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>In this case, you need to start with <b>-</b> 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>Save the changes</p>
<code>save</code>
<h3>Publish your key changes</h3>
<p>Like adding new proofs, you most probably want to publish your changes to WKD or to a keyserver like <a href="keys.openpgp.org">keys.openpgp.org</a>

View file

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

View file

@ -0,0 +1,23 @@
<p>Now that we have proofs on our OpenPGP keys, lets list them.</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 prefs:</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