I have encrypted the video file using CSharp - AES Encryption RijndaelManaged and able to decrypt the same using CSharp. However the requirement is to decrypt that encrypted file using Java. I have used Java CipherInputStream but that file doesnt get decrypted.
Note: In Java with CipherInputstream, I can encrypt and decrypt the video file.
Expected Result: CSharp encrypted file should get decrypted in Java and able to play the video file.
Thanks in advance.