Fixed typos and intendation issues

This commit is contained in:
Sun Knudsen 2021-12-29 11:40:32 -05:00
parent cd13a143fa
commit 42ed5064b4
No known key found for this signature in database
GPG Key ID: 02C43AD072D57783
2 changed files with 18 additions and 18 deletions

View File

@ -124,7 +124,7 @@ sub cv25519 2021-12-29 [E]
gpg --armor --export john@example.net > ~/johndoe.asc gpg --armor --export john@example.net > ~/johndoe.asc
``` ```
### Import Suns public key using key server… ### Import Suns PGP public key using key server…
```console ```console
$ gpg --keyserver hkps://keys.openpgp.org --recv-keys 0x8C9CA674C47CA060 $ gpg --keyserver hkps://keys.openpgp.org --recv-keys 0x8C9CA674C47CA060
@ -137,7 +137,7 @@ imported: 1
👍 👍
### …or using public key URL ### …or using PGP public key URL
> Heads-up: verify [web of trust](#verify-suns-pgp-public-key-using-web-of-trust) to list missing keys. > Heads-up: verify [web of trust](#verify-suns-pgp-public-key-using-web-of-trust) to list missing keys.
@ -179,18 +179,18 @@ Open https://sunknudsen.com/, https://github.com/sunknudsen/pgp-public-key and h
> Heads-up: `0xC1323A377DE14C8B` is Suns [legacy](https://github.com/sunknudsen/pgp-public-key/tree/master/legacy) public key. > Heads-up: `0xC1323A377DE14C8B` is Suns [legacy](https://github.com/sunknudsen/pgp-public-key/tree/master/legacy) public key.
```console ```console
$ gpg --list-signatures 0x8C9CA674C47CA060 $ gpg --list-signatures hello@sunknudsen.com
pub ed25519 2021-12-28 [C] pub ed25519 2021-12-28 [C]
E786274BC92B47C23C1CF44B8C9CA674C47CA060 E786274BC92B47C23C1CF44B8C9CA674C47CA060
uid [ unknown] Sun Knudsen <hello@sunknudsen.com> uid [ unknown] Sun Knudsen <hello@sunknudsen.com>
sig 3 8C9CA674C47CA060 2021-12-28 Sun Knudsen <hello@sunknudsen.com> sig 3 8C9CA674C47CA060 2021-12-28 Sun Knudsen <hello@sunknudsen.com>
sig 3 C1323A377DE14C8B 2021-12-28 [User ID not found] sig 3 C1323A377DE14C8B 2021-12-28 [User ID not found]
sub ed25519 2021-12-28 [S] [expires: 2022-12-28] sub ed25519 2021-12-28 [S] [expires: 2022-12-28]
sig 8C9CA674C47CA060 2021-12-28 Sun Knudsen <hello@sunknudsen.com> sig 8C9CA674C47CA060 2021-12-28 Sun Knudsen <hello@sunknudsen.com>
sub cv25519 2021-12-28 [E] [expires: 2022-12-28] sub cv25519 2021-12-28 [E] [expires: 2022-12-28]
sig 8C9CA674C47CA060 2021-12-28 Sun Knudsen <hello@sunknudsen.com> sig 8C9CA674C47CA060 2021-12-28 Sun Knudsen <hello@sunknudsen.com>
sub ed25519 2021-12-28 [A] [expires: 2022-12-28] sub ed25519 2021-12-28 [A] [expires: 2022-12-28]
sig 8C9CA674C47CA060 2021-12-28 Sun Knudsen <hello@sunknudsen.com> sig 8C9CA674C47CA060 2021-12-28 Sun Knudsen <hello@sunknudsen.com>
``` ```
### Paste, encrypt and sign message (enter line break and `ctrl+d` to quit edit mode) ### Paste, encrypt and sign message (enter line break and `ctrl+d` to quit edit mode)

View File

@ -217,7 +217,7 @@ Replace `/path/to/signing/pub.asc` with signing public key path.
$ gpg --import '/path/to/signing/pub.asc' $ gpg --import '/path/to/signing/pub.asc'
gpg: key 0xDFCECB410CE8A745: public key "John Doe <john@example.net>" imported gpg: key 0xDFCECB410CE8A745: public key "John Doe <john@example.net>" imported
gpg: Total number processed: 1 gpg: Total number processed: 1
gpg: imported: 1 gpg: imported: 1
``` ```
#### Import signing private key #### Import signing private key
@ -229,9 +229,9 @@ $ gpg --import /path/to/signing/master.asc
gpg: key 0xDFCECB410CE8A745: "John Doe <john@example.net>" not changed gpg: key 0xDFCECB410CE8A745: "John Doe <john@example.net>" not changed
gpg: key 0xDFCECB410CE8A745: secret key imported gpg: key 0xDFCECB410CE8A745: secret key imported
gpg: Total number processed: 1 gpg: Total number processed: 1
gpg: unchanged: 1 gpg: unchanged: 1
gpg: secret keys read: 1 gpg: secret keys read: 1
gpg: secret keys imported: 1 gpg: secret keys imported: 1
``` ```
#### Sign master key #### Sign master key