OpenSSL is based on the excellent SSLeay library developed by Eric A. Young and Tim J. Hudson. The OpenSSL toolkit is licensed under an Apache-style licence, which basically means that you are free to get and use it for commercial and non-commercial purposes subject to some simple license conditions.
To encrypt a file:
$ openssl des3 -salt -in file.log -out file.des3The above will prompt for a password, or you can put it in with a -k option, assuming you’re on a trusted server.
enter des-ede3-cbc encryption password:
Verifying - enter des-ede3-cbc encryption password:
To Decrypt: openssl des3 -d -salt -in file.des3 -out file.txt -k mypassword





Prolong the usage life of your computer with
2 comments:
Post a Comment