Decrypt problem
Hello!
I have problem decripting string if the string is long.
I use
<cfset session.algo = "DES">
<cfset session.key = GenerateSecretKey(session.algo)>
<cfset session.enco = "HEX">
I have tried and other but nothing works for me.
also i do the encrypt like this: #URLEncodedFormat(Encrypt(tmpnodeid,session.key,session.algo,session.enco))#
and i pass this value as url parameter, which btw sometimes is cut.
Then i decrypt it like this: #Decrypt(URLDecode(URL.name),session.key,session.algo,session.enco)#
Can anyone please help me?
Thank you in advance!
Kind regards!
