mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-14 00:35:46 +02:00
GPG command
As authored by @fordhurley. We had a little merge problem, so had to recreate this file on master.
This commit is contained in:
parent
dfa5e2437b
commit
b250569a60
1 changed files with 19 additions and 0 deletions
19
pages/common/gpg.md
Normal file
19
pages/common/gpg.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# 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}}`
|
Loading…
Add table
Reference in a new issue