Encrypt a file using gpg
To encrypt a file using gpg command, run gpg -o myfile.tar.gpg –symmetric myfile.tar Now it will ask for a password. Once you…
To encrypt a file using gpg command, run gpg -o myfile.tar.gpg –symmetric myfile.tar Now it will ask for a password. Once you…
To encrypt a file, run openssl enc -aes-256-cbc -in FILE -out FILE.enc To decrypt, use openssl enc -d -aes-256-cbc -in FILE.enc -out…