tldr/pages/common/gpg.md
Romain Prieto b250569a60 GPG command
As authored by @fordhurley.
We had a little merge problem, so had to recreate this file on master.
2014-05-27 08:49:33 +10:00

424 B

gpg

Gnu Privacy Guard

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