From 9c5c24744663ca6e1510b6fc95e5edd1e188c6ff Mon Sep 17 00:00:00 2001 From: Will Sargent Date: Tue, 20 Sep 2016 12:39:35 -0700 Subject: [PATCH 1/2] Add key checking --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 8085619..ed91177 100644 --- a/README.md +++ b/README.md @@ -476,6 +476,17 @@ List your new secret keys: ssb 4096R/0x5912A795E90DD2CF 2016-05-24 ssb 4096R/0x3F29127E79649A3D 2016-05-24 +Verify with OpenPGP key checks: + +Use the automated [key best practice checker](https://riseup.net/en/security/message-security/openpgp/best-practices#openpgp-key-checks): + +``` +sudo apt-get install hopenpgp-tools +hkt export-pubkeys $KEYID | hokey lint +``` + +The output will display any problems with your key in red text. If everything is green, your key passes each of the tests below. If it is red, your key has failed one of the tests. + ## Export subkeys Save a copy of your subkeys: From 678c8a8da78bc0904dfca35ff55815d79111790b Mon Sep 17 00:00:00 2001 From: Will Sargent Date: Tue, 20 Sep 2016 12:54:03 -0700 Subject: [PATCH 2/2] Prepend $ --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ed91177..d0d0fec 100644 --- a/README.md +++ b/README.md @@ -481,8 +481,8 @@ Verify with OpenPGP key checks: Use the automated [key best practice checker](https://riseup.net/en/security/message-security/openpgp/best-practices#openpgp-key-checks): ``` -sudo apt-get install hopenpgp-tools -hkt export-pubkeys $KEYID | hokey lint +$ sudo apt-get install hopenpgp-tools +$ hkt export-pubkeys $KEYID | hokey lint ``` The output will display any problems with your key in red text. If everything is green, your key passes each of the tests below. If it is red, your key has failed one of the tests.