TO ENCRYPT
gpg --symmetric --cipher-algo AES256 example.txt
- or -
gpg --symmetric --cipher-algo TWOFISH example.txt
(gpg will then ask for a passphrase, make it long, as random as possible, upper and lower case, a punctuation, and a number)
TO DECRYPT
gpg example.txt.gpg
(gpg will then ask for the passphrase)
To encrypt, but have the
(
Read more... )