Hoping someone can shed some light on the decrypt behavior I am seeing when using CryptoJS in Postman
The client has provided this online tool as comparison… Triple DES Encryption and Decryption Online
The decrypted value never aligns with the output from Postman
Using mode ECB
Cmd used:
var decryptTM = CryptoJS.TripleDES.decrypt(TerminalMasterKey, ‘channelKey’).toString(CryptoJS.enc.Utf8);
Any ideas would be appreciated