Steve,
the cfencrypt, cfdecrypt usage is:
<!--- encrypt string --->
<cfset encryptedVariable = CFUSION_ENCRYPT("InputString","yourKey")>
<!--- decrypt string --->
<cfset decryptedVariable = CFUSION_DECRYPT("encryptedVariable","yourKey")>
To encrypt/decrypt url (cgi.query_sring) use:
<!--- test.cfm --->
<!--- if your link should be: test2.cfm?a=1&b=2&c=n --->
<cfset eV = CFUSION_ENCRYPT("a=1&b=2&c=n","yourKey")>
<a href="test.cfm?#eV#">check it</a>
<!--- test2.cfm --->
<cfset cgiList = CFUSION_DECRYPT("eV","yourKey")>
<!--- ...write some code to get the variable/value pairs from
you eV (encrypted cgi string) variable --->
Have fun,
Miro
----- Original Message -----
From: "Steve Bernard" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 17, 2000 9:47 PM
Subject: RE: NEED HELP Encrypt Url ?
> Could you share your solution with the class?
>
> Steve
>
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.