Help! this thing (see code below) works fine on MX but not on CF5... the
only way to get it towork in CF5 is to encrypt and decrypt in the same
request.

Can anyone suggest a workaround? we need this to work for our transition to
MX.

Thank you!

Kyle

<cfset string = "kyle"> <!--- this is what was made into the string of the
"encrypted" variable below --->
<cfset key = "mouse">

<!--- this works on CFMX but does not work on CF5 --->
<cfset encrypted = "$4$H?5@">
<cfset decrypted = decrypt(encrypted, key)>
<cfoutput>
    <h4><B>The string:</B></h4> #string# <br>
    <h4><B>The key:</B></h4> #key#<br>
    <h4><B>Encrypted:</B></h4> #encrypted#<br>
    <h4><B>Decrypted:</B></h4> #decrypted#<br>
</cfoutput>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Reply via email to