I am trying to make an integration and i need to decrypt the return encrypted data. I don’t see any plugins to decrypt aes-256-ecb. Any recommendation?
Any other option to decrypt in backend?
Decryption javascript is as follows
crypto.decryptAES = (data, key)
=> {try{
let decryptKey = CryptoJS.enc.Utf8.parse(key);
var rawData = CryptoJS.AES.decrypt(data, decryptKey, { mode:
It doesn’t work, so. Could you please help me check with that.
I am making payment integration. After i made the payment, i get the encrypted response from the bank. Response data is saved in the database and decrypt by running javascript.
Actually, it would be better if i could use a plugin or API as the response can directly decrypt in backend API workflow. I would appreciate for any help.