1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 19:45:09 +02:00
tldr/pages/common/gpg.md
Lucas Gabriel Schneider a5fe31bc47
multiple pages: format technical tokens (#5119)
Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2021-01-31 12:05:18 -05:00

33 lines
808 B
Markdown

# gpg
> GNU Privacy Guard.
> See `gpg2` for GNU Privacy Guard 2.
> More information: <https://gnupg.org>.
- 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}}`