I am currently posting an encrypted string to a ColdFusion web server where I am trying to decrypt the value using the same password used in encrypting it in LiveCode. It isn't working at all, where ColdFusion keeps on telling me that the data to be decrypted is not correct.
When I answer the data posted it is exactly the same as what the coldfusion server receives it as.
In Coldfusion I use:
<cfset decrypted=decrypt(#dataposted#, #password#,'AES')>
In Livecode I use:
encrypt gFirstName using "aes256" with password tPassword
(Both passwords are the same in each script).
Any ideas?