diff --git a/views/guides.php b/views/guides.php index 59d622f..bdb0b82 100644 --- a/views/guides.php +++ b/views/guides.php @@ -39,5 +39,11 @@ Feature comparison with Keybase
Migrating from Keybase
+ +
+

Managing proofs in GnuPG

+ Listing proofs
+ Deleting proofs
+
diff --git a/views/guides/managing-proofs-deleting.content.php b/views/guides/managing-proofs-deleting.content.php new file mode 100644 index 0000000..1e8c99c --- /dev/null +++ b/views/guides/managing-proofs-deleting.content.php @@ -0,0 +1,34 @@ +

Over time, you may need to delete proofs. Changing proofs can be achieved by deleting proofs and adding new ones.

+ +

Delete all proofs

+ +

First, edit the key (make sure to replace FINGERPRINT):

+gpg --edit-key FINGERPRINT + +

Launch the notation prompt:

+notation + +

Enter the 'none' notation to delete all notations:

+none + +

Save the changes:

+save + +

Delete one of your proofs

+ +

First, edit the key (make sure to replace FINGERPRINT):

+gpg --edit-key FINGERPRINT + +

Launch the notation prompt:

+notation + +

Enter the - (minus) symbol followed by the proof you want to delete. Make sure you type the proof exactly like it is in your key.

+-proof@metacode.biz=dns:yourdomain.org?type=TXT + +

To make it easier to enter the right proof, you could first list all proofs and simply copy the proof (including "proof@metacode.biz=") you want to delete.

+ +

Save the changes:

+save + +

Upload the key to WKD or use the following command to upload the key to keys.openpgp.org (make sure to replace FINGERPRINT):

+gpg --keyserver hkps://keys.openpgp.org --send-keys FINGERPRINT diff --git a/views/guides/managing-proofs-deleting.title.php b/views/guides/managing-proofs-deleting.title.php new file mode 100644 index 0000000..62440b4 --- /dev/null +++ b/views/guides/managing-proofs-deleting.title.php @@ -0,0 +1 @@ +Deleting Proofs using GnuPG diff --git a/views/guides/managing-proofs-listing.content.php b/views/guides/managing-proofs-listing.content.php new file mode 100644 index 0000000..2765799 --- /dev/null +++ b/views/guides/managing-proofs-listing.content.php @@ -0,0 +1,23 @@ +

Let's list the identity proofs stored in our OpenPGP keys.

+ +

Listing notations in GnuPG

+ +

First, edit the key (make sure to replace FINGERPRINT):

+gpg --edit-key FINGERPRINT + +

List detailed preferences:

+showpref + +

You should now see your key details, uid, and proofs assigned to your keys:

+ +[ultimate] (1). Your Name + 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 + + +

Exit gpg:

+quit diff --git a/views/guides/managing-proofs-listing.title.php b/views/guides/managing-proofs-listing.title.php new file mode 100644 index 0000000..33308f0 --- /dev/null +++ b/views/guides/managing-proofs-listing.title.php @@ -0,0 +1 @@ +Listing Proofs using GnuPG