diff --git a/pages/common/gpg.md b/pages/common/gpg.md index 48d4be0750..2a032dc7d1 100644 --- a/pages/common/gpg.md +++ b/pages/common/gpg.md @@ -21,3 +21,11 @@ - Import a public key: `gpg --import {{public.gpg}}` + +- Export public key for alice@example.com (output to STDOUT): + +`gpg --export --armor {{alice@example.com}}` + +- Export private key for alice@example.com (output to STDOUT): + +`gpg --export-secret-keys --armor {{alice@example.com}}`