You can also use the build in encryption funcionallity in CF:

<cfset EncryptKey = "THI$I$MYK3Y">
<cfset StringToEncrypt = "Hello World!">

<cfset EncryptedValue = Encrypt(StringToEncrypt, EncryptKey)>
Encrypted Value: <br>
<cfoutput>#EncryptedValue#</cfoutput>

<br>
<br>

<cfset DecryptedValue = Decrypt(EncryptedValue, EncryptKey)>
Decrypted Value: <br>
<cfoutput>#DecryptedValue#</cfoutput>

Cheers!

-- 
SCOTT VAN VLIET 
SENIOR ANALYST 
SBC SERVICES, INC 
Tel: 858.886.3878 
Fax: 858.653.6763 
Email: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> 




-----Original Message-----
From: Neil H. [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 20, 2002 8:50 AM
To: CF-Talk
Subject: Encryption


Anyone have a good way of encrypting data in to a SQL server DB?  I am
looking for something reputable and reliable.  It would have to handle
credit cards and passwords.

Thanks,

Neil


______________________________________________________________________
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to