Improve guides

This commit is contained in:
Yarmo Mackenbach 2020-07-27 13:50:40 +02:00
parent cb7e8e968f
commit 9a5242dc5d
2 changed files with 14 additions and 12 deletions

View file

@ -5,13 +5,13 @@
<p>First, edit the key (make sure to replace FINGERPRINT):</p> <p>First, edit the key (make sure to replace FINGERPRINT):</p>
<code>gpg --edit-key FINGERPRINT</code> <code>gpg --edit-key FINGERPRINT</code>
<p>Launch the notation prompt</p> <p>Launch the notation prompt:</p>
<code>notation</code> <code>notation</code>
<p>Enter the 'none' notation to delete all notations</p> <p>Enter the 'none' notation to delete all notations:</p>
<code>none</code> <code>none</code>
<p>Save the changes</p> <p>Save the changes:</p>
<code>save</code> <code>save</code>
<h3>Delete one of your proofs</h3> <h3>Delete one of your proofs</h3>
@ -19,14 +19,16 @@
<p>First, edit the key (make sure to replace FINGERPRINT):</p> <p>First, edit the key (make sure to replace FINGERPRINT):</p>
<code>gpg --edit-key FINGERPRINT</code> <code>gpg --edit-key FINGERPRINT</code>
<p>Launch the notation prompt</p> <p>Launch the notation prompt:</p>
<code>notation</code> <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> <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> <code>-proof@metacode.biz=dns:yourdomain.org?type=TXT</code>
<p>Save the changes</p> <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> <code>save</code>
<h3>Publish your key changes</h3> <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>
<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> <code>gpg --keyserver hkps://keys.openpgp.org --send-keys FINGERPRINT</code>

View file

@ -1,14 +1,14 @@
<p>Now that we have proofs on our OpenPGP keys, lets list them.</p> <p>Let's list the identity proofs stored in our OpenPGP keys.</p>
<h3>Listing notations in GnuPG</h3> <h3>Listing notations in GnuPG</h3>
<p>First, edit the key (make sure to replace FINGERPRINT):</p> <p>First, edit the key (make sure to replace FINGERPRINT):</p>
<code>gpg --edit-key FINGERPRINT</code> <code>gpg --edit-key FINGERPRINT</code>
<p>List detailed prefs:</p> <p>List detailed preferences:</p>
<code>showpref</code> <code>showpref</code>
<p>You should now see your key details, uid, and proofs assigned to your keys</p> <p>You should now see your key details, uid, and proofs assigned to your keys:</p>
<code> <code>
[ultimate] (1). Your Name <your@email> [ultimate] (1). Your Name <your@email>
Cipher: AES256, AES192, AES, 3DES Cipher: AES256, AES192, AES, 3DES
@ -19,5 +19,5 @@
proof@metacode.biz=dns:yourdomain.org?type=TXT proof@metacode.biz=dns:yourdomain.org?type=TXT
</code> </code>
<p>Exit gpg</p> <p>Exit gpg:</p>
<code>quit</code> <code>quit</code>