1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 09:17:57 +01:00
tldr/pages/common/gpg.md

24 lines
478 B
Markdown
Raw Normal View History

# 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
2015-10-22 09:31:52 +02:00
`gpg --import {{public.gpg}}`