Re: Secure Form Submission

2003-08-23 Thread zentara
On Fri, 22 Aug 2003 20:10:37 +, [EMAIL PROTECTED] (Greenhalgh David) wrote: >Thanks for that. The MD5 is a one way hash, unfortunately. I need to be >able to decrypt at the server side. > >I agree about SSL, unfortunately my client's host (borrowed space on a >non-commercial server) only ha

Re: Secure Form Submission

2003-08-22 Thread Greenhalgh David
It seems like it should be secure. I am assuming the "session cookie" would store the server's public key? or some such? My question would be how do you implement an RC4 encryption (or any encryption other than the built-in SSL) on the client side? Possibly a Java applet with the encryption bu

RE: Secure Form Submission

2003-08-22 Thread wiggins
On Fri, 22 Aug 2003 05:48:14 +, Greenhalgh David <[EMAIL PROTECTED]> wrote: > Hi All, > > I need to implement a form that is submitted securely. My client does > not have access to SSL on his host. I was thinking in terms of a > session cook

Re: Secure Form Submission

2003-08-22 Thread Greenhalgh David
On Friday, August 22, 2003, at 05:43 PM, zentara wrote: On Fri, 22 Aug 2003 05:48:14 +, [EMAIL PROTECTED] (Greenhalgh David) wrote: Hi All, I need to implement a form that is submitted securely. My client does not have access to SSL on his host. I was thinking in terms of a session cookie wit

Re: Secure Form Submission

2003-08-22 Thread zentara
On Fri, 22 Aug 2003 05:48:14 +, [EMAIL PROTECTED] (Greenhalgh David) wrote: >Hi All, > >I need to implement a form that is submitted securely. My client does >not have access to SSL on his host. I was thinking in terms of a >session cookie with a client side RC4 encrypt and a decrypt in the

Secure Form Submission

2003-08-21 Thread Greenhalgh David
Hi All, I need to implement a form that is submitted securely. My client does not have access to SSL on his host. I was thinking in terms of a session cookie with a client side RC4 encrypt and a decrypt in the Perl script. Do peoople here consider that to be a secure scenario, or is there anot