Use openssl to encrypt and decrypt filesJun 12, 2020BlockerUncategorisedTo encrypt a file:openssl enc -salt -aes-256-cbc -in <input file> -out <output file> -md sha512To Decrypt a file:openssl enc -aes-256-cbc -d -in <input file> -out <output file> -md sha512In both cases it will prompt for a password.