I want to decrypt a file that is decrypted using this command line
openssl.exe enc -d -in input.ENC -out output.txt -pass file:keyfile.key -des3
I want to be able to decrypt it using Java. (JDK8)
Thanks in advance for tips.
I want to decrypt a file that is decrypted using this command line
openssl.exe enc -d -in input.ENC -out output.txt -pass file:keyfile.key -des3
I want to be able to decrypt it using Java. (JDK8)
Thanks in advance for tips.