2014-05-27 02:49:33 +04:00
|
|
|
# gpg
|
|
|
|
|
2017-07-20 21:53:15 +03:00
|
|
|
> GNU Privacy Guard.
|
2019-06-07 13:58:26 +03:00
|
|
|
> More information: <https://gnupg.org>.
|
2014-05-27 02:49:33 +04:00
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Sign doc.txt without encryption (writes output to doc.txt.asc):
|
2014-05-27 02:49:33 +04:00
|
|
|
|
|
|
|
`gpg --clearsign {{doc.txt}}`
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Encrypt doc.txt for alice@example.com (output to doc.txt.gpg):
|
2014-05-27 02:49:33 +04:00
|
|
|
|
|
|
|
`gpg --encrypt --recipient {{alice@example.com}} {{doc.txt}}`
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Encrypt doc.txt with only a passphrase (output to doc.txt.gpg):
|
2014-05-27 02:49:33 +04:00
|
|
|
|
|
|
|
`gpg --symmetric {{doc.txt}}`
|
|
|
|
|
2019-06-17 18:00:38 +03:00
|
|
|
- Decrypt doc.txt.gpg (output to `stdout`):
|
2014-05-27 02:49:33 +04:00
|
|
|
|
|
|
|
`gpg --decrypt {{doc.txt.gpg}}`
|
2014-08-13 22:48:25 +04:00
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Import a public key:
|
2014-08-13 22:48:25 +04:00
|
|
|
|
2015-10-22 10:31:52 +03:00
|
|
|
`gpg --import {{public.gpg}}`
|
2016-06-21 01:58:28 +03:00
|
|
|
|
2019-06-17 18:00:38 +03:00
|
|
|
- Export public key for alice@example.com (output to `stdout`):
|
2016-06-21 01:58:28 +03:00
|
|
|
|
|
|
|
`gpg --export --armor {{alice@example.com}}`
|
|
|
|
|
2019-06-17 18:00:38 +03:00
|
|
|
- Export private key for alice@example.com (output to `stdout`):
|
2016-06-21 01:58:28 +03:00
|
|
|
|
|
|
|
`gpg --export-secret-keys --armor {{alice@example.com}}`
|