I'm currently stuck with a csv file that was encrypted by OpenSSL.
It's aes-256-cbc, I know the password and so it should be no problem to decrypt it. However it was created with OpenSSL < 1.1, in these older version they internally used MD5 as a hash, in >= 1.1 they've changed it to SHA.
This causes the >= 1.1 versions to not be able to successfully decrypt version < 1.1 encrypted files. It says "bad decrypt" and creates the finished file, but still the content is unreadable. This issue is known on github and several other platforms. One has to use the old OpenSSL versions for decryption, then it will work.
In my program that should decrypt the encrypted files, it behaves just as if it was one of the new versions of OpenSSL. Although the password is correct, the final file is not properly decrypted. So my question is how can I, using a RijnadelManaged, additionally feed the hash algorithm that should be used? Unfortunately I have no control over which version is used to encrypt the files.