Displaying 1 result from an estimated 1 matches for "bebb0a5f".
2007 Mar 02
1
Off-topic: Howto decrypt OpenSSL file in Win32 environment
Hi all,
I supose the subject is descriptive enough. In a CentOS server I do the
next to make the daily backups:
tar cfv - dir_data/ | openssl enc -e -salt -aes256 -pass pass:$PASSWORD
-out backup_file.bin
So I get an well-encrypted and tared file.
If I want to decrypt and the file is easy in Unix/Linux environment:
openssl enc -d -aes256 -in backup_file.bin | tar xfv - -C dir_what_you_want/