mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-23 07:19:28 -07:00
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:
commit
cb7e8e968f
5 changed files with 63 additions and 0 deletions
|
@ -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>
|
||||||
|
|
32
views/guides/managing-proofs-deleting.content.php
Normal file
32
views/guides/managing-proofs-deleting.content.php
Normal 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>
|
1
views/guides/managing-proofs-deleting.title.php
Normal file
1
views/guides/managing-proofs-deleting.title.php
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Deleting Proofs using GnuPG
|
23
views/guides/managing-proofs-listing.content.php
Normal file
23
views/guides/managing-proofs-listing.content.php
Normal 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>
|
1
views/guides/managing-proofs-listing.title.php
Normal file
1
views/guides/managing-proofs-listing.title.php
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Listing Proofs using GnuPG
|
Loading…
Reference in a new issue