1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:22:08 +02:00
tldr/pages/common/gpg.md
Matthew Peveler c25e4e378e
gpg2: fix page title to match file name (#5090)
Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
2021-01-04 22:59:33 +00:00

800 B

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}}

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}}

gpg --export --armor {{alice@example.com}}

gpg --export-secret-keys --armor {{alice@example.com}}