I also had the same problem while encryption and decryption in Adobe
campaign standard and followed the solution that is provided in this
conversation and it worked .To encrypt
:encryption_aescbcEncrypt('TEST','\\x656e6372797074546f6f6c7331323334','\\x6f0561702db407a325634764f8030519')To
De-crypt
:encryption_aescbcDecrypt('encryptedvalue','\\x656e6372797074546f6f6c7331323334','\\x6f0561702db407a325634764f8030519')In
the document it is written as to add x in prior to the encrypted value
but I che...