I have to send data from a C# application to a JAVA application. JAVA developers say they have implemented TripleDES (3DES) encryption using CBC mode to decrypt the message coming from other apps. They have provided following information to encrypt a message before sending them.
Encryption: TripleDES (3DES) (Symmetric) Mode: CBC Padding: PKCS5 IV (salt): No IV/salt is used
Please guide me, is there a way to implement CBC mode without an IV/salt? The TripleDES provider in C# generates a random IV (if no IV is set manually) and decryption fails without using an IV.