mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-13 22:51:13 +03:00
20 lines
424 B
Markdown
20 lines
424 B
Markdown
|
# 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}}`
|