RE: encryption - CF SQL Server

2002-09-27 Thread Michael Ross
I think we are looking for the same thing, I just started a thread encrypting cfquery, then I saw this thread (get to many emails!!). We want to take the data being passed back and forth from the sql box and have it go accross encrypted. [EMAIL PROTECTED] 09/20/02 07:06PM Yea, Java's

RE: encryption - CF SQL Server

2002-09-27 Thread S . Isaac Dealey
Sounds similar ... I think the application ( purpose ) is probably a bit different... Indicentally -- you can use SSL to encrypt a SQL Server 2000 connection ... we want the actual data encrypted in the db tho... I think we are looking for the same thing, I just started a thread encrypting

RE: encryption - CF SQL Server

2002-09-23 Thread Mosh Teitelbaum
: Friday, September 20, 2002 9:07 PM To: CF-Talk Subject: RE: encryption - CF SQL Server So here's the catch now if I understand correctly... You want to encrypt the data BEFORE it's passed in the form... That's funky... Thing is, you need a client solution then. CF can't do much

RE: encryption - CF SQL Server

2002-09-23 Thread S . Isaac Dealey
OK... so, just to verify what we're looking for here (again 8^): The data is submitted to CF Server in clear text, CF encrypts the data and inserts it into the DB. At some later point, an external app queries the DB, decrypts the data, and writes it to a flat file. Is that right?

RE: encryption - CF SQL Server

2002-09-23 Thread Mosh Teitelbaum
: RE: encryption - CF SQL Server OK... so, just to verify what we're looking for here (again 8^): The data is submitted to CF Server in clear text, CF encrypts the data and inserts it into the DB. At some later point, an external app queries the DB, decrypts the data, and writes

RE: encryption - CF SQL Server

2002-09-20 Thread Mosh Teitelbaum
Encrypted in the DB but not encrypted in the flat file? Do you ever need to decrypt the encrypted data? I'm not much of a COM guy but Java has internal encryption classes (dunno if that's an option for you). -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL

RE: encryption - CF SQL Server

2002-09-20 Thread S . Isaac Dealey
Yea, Java's probably not viable in this particular environment... the flat file is for NACH to go to the bank via modem ( not over an internet connection ), then gets deleted. Encrypted in the DB but not encrypted in the flat file? Do you ever need to decrypt the encrypted data? I'm not

RE: encryption - CF SQL Server

2002-09-20 Thread Costas Piliotis
. Not unless you use -Original Message- From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20, 2002 3:20 PM To: CF-Talk Subject: RE: encryption - CF SQL Server Encrypted in the DB but not encrypted in the flat file? Do you ever need to decrypt the encrypted data

RE: encryption - CF SQL Server

2002-09-20 Thread S . Isaac Dealey
So here's the catch now if I understand correctly... You want to encrypt the data BEFORE it's passed in the form... That's funky... Thing is, you need a client solution then. CF can't do much about encrypting data BEFORE a form is submitted. Neither can ASP or PHP or JSP or whatever.