Looking for aes-256-ecb decrypt plugin


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:

CryptoJS.mode.ECB, padding: CryptoJS.pad.Pkcs7
}).toString(CryptoJS.enc.Utf8)
return rawData;
}catch(e){
sails.log
(e)
}
}

Hi! If you already have the JS, you can use the Toolbox plugin in Bubble to run JS in your workflow



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.

The setup seems fine. DMing you