Comment on Encryption with Gnu Privacy Guard (GPG)Comments−vitaluha12y"To encrypt a File:" gpg -o encrypted_file.gpg –encrypt -r original.file # they didn't put recipient after -r ?−reedalex0112yIn this case it will just prompt you for for the recipient. This command is too verbose though. You can type:gpg -e fileThe output will be file.gpg. It will ask you for a recipient unless you have "default-recipient" or "default-recipient-selt" set in gpg.conf.
Comments
"To encrypt a File:"
# they didn't put recipient after -r ?In this case it will just prompt you for for the recipient. This command is too verbose though. You can type:
gpg -e file
The output will be file.gpg. It will ask you for a recipient unless you have "default-recipient" or "default-recipient-selt" set in gpg.conf.