Add base GPG help file

This commit is contained in:
Donovan Glover 2017-11-06 01:32:10 -05:00
parent 55608529de
commit d3551fd6a7
No known key found for this signature in database
GPG Key ID: 8FC5F7D90A5D8F4D

16
help/gpg.md Normal file
View File

@ -0,0 +1,16 @@
GPG, also known as the GNU Privacy Guard, is a free and open source implementation of the OpenPGP standard.
# Creating Keys
- Key: RSA and RSA
- Keysize: 4096 bits
- Valid for: 1y (1 year)
## Encrypting Files
- Encrypt <IN> with a password and output the results to <OUT>: `gpg -c <IN> -o <OUT>`
## Decrypting Files
- Decrypt <IN> and output the results to <OUT>: `gpg -d <IN> -o <OUT>`
- Decrypt <IN> `gpg <filename>`