N. P. O'Donnell, 2020
openssl enc -aes-256-cbc -in <plaintext input file> -out <ciphertext output file>
By convention the output file often has the extension .enc
openssl enc -d -aes-256-cbc -in <ciphertext input file> -out <plaintext output file>
By convention the output file often has the extension .dec