Encrypt/Decrypt files using GPG
Encrypt/Decript files in linux
#Encypt...
gpg -c <Source File>
#Decrypt...
gpg <Encrypted File>
Encrypt/Decript files in linux
#Encypt...
gpg -c <Source File>
#Decrypt...
gpg <Encrypted File>
Usie this command to encrypt and decrypt a file using PGP in linux.
gpg -c file
gpg -o file -d file.gpg (output to file)