CryptoJS
CryptoJS copied to clipboard
Cannot read property 'createDecryptor' of undefined
Hi
I'm trying to use the library to encrypt/decrypt aes messages but when I try to decrypt a message I got the message of the title. This is what I try to do:
var key = CryptoJS.enc.Base64.parse(password); var decryptedData = CryptoJS.AES.decrypt( response.token, key, { mode: CryptoJS.mode.ECB, padding: CryptoJS.pad.Pkcs7 } );
This are the loaded libraries:
I am able to use AES, pls visit my github site for a working solution: https://github.com/igeorge0902/Gateway/blob/update/WWW/README.md