2014-05-26 23:49:33 +01:00
|
|
|
# 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}}`
|
2014-08-13 19:48:25 +01:00
|
|
|
|
|
|
|
- Import a public key
|
|
|
|
|
2015-10-22 08:31:52 +01:00
|
|
|
`gpg --import {{public.gpg}}`
|