Encrypt and decrypt a file with OpenSSL
I was recently looking for a way of encrypting files with a salted encryption algruthum, and found this can be done using OpenSSL. It’s really easy and much more secure that using a zip product. You do this by using the following syntax: openssl des3 -salt -in /path/FileToBeEncrypted -out /path/EncryptedFileName…