3des algorithm (C-Java)
843811Nov 9 2007 — edited Sep 17 2009Hello all!!
I have an application that interact with Linux and Windows.
I have to cypher a file in Linux, and windows has to decrypt it.
I use OpenSSL and 3des to cypher it.
openssl enc -des3 -salt -in file.txt -out 3descifr.txt -pass pass:lidia -------------------> CIPHER
openssl enc -des-ede3-cbc -d -in 3descifr.txt -out 3desdescifr.txt -pass pass:lidia ---> DECRYPT
Do you know if i can decrypt the file with Java?? it's very important. i have to obtain de initial file using Java.