Hi,I'm trying to embed some encrypted data in links in email and then
get the data decrypted when user arrives at the actual website. Here is
what we use to encrypt the data in the Adobe Camapgin:<%=
cryptString('test','base-64-encoded-256bit-key',false) %> Then on the
website, I'm using CryptoJS (https://cryptojs.gitbook.io/docs/) to
decrypt the data and I haven't been able to get the decryption
working... According to the cryptString documentation, cryptString uses
a zero IV? the key param of ...