mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-11 06:16:53 +03:00
b78dd40547
This chage adds examples for exporting public and private GPG keys. This is particularly useful for backing up keys. In both cases they have been output as ASCII armored text with the `--armor` flag to make the output easier to work with.
715 B
715 B
gpg
Gnu Privacy Guard.
- Sign doc.txt without encryption (writes output to doc.txt.asc):
gpg --clearsign {{doc.txt}}
- Encrypt doc.txt for alice@example.com (output to doc.txt.gpg):
gpg --encrypt --recipient {{alice@example.com}} {{doc.txt}}
- Encrypt doc.txt with only a passphrase (output to doc.txt.gpg):
gpg --symmetric {{doc.txt}}
- Decrypt doc.txt.gpg (output to STDOUT):
gpg --decrypt {{doc.txt.gpg}}
- 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}}