RE: [PHP-WIN] md5 password with javascirpt

2003-12-08 Thread Herhuth, Ron
-- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >Sent: 05 December 2003 12:07 >To: [EMAIL PROTECTED]; [EMAIL PROTECTED] >Subject: RE: [PHP-WIN] md5 password with javascirpt > >Try this site: http://pajhome.org.uk/ for the MD5.js file. > >Lots of security tips and tricks. &g

RE: [PHP-WIN] md5 password with javascirpt

2003-12-08 Thread Roy Henderson
sensitive data? Waiting to be corrected ... Regards, Roy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 05 December 2003 12:07 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP-WIN] md5 password with javascirpt Try this site: http://pajhome.org.uk/

RE: [PHP-WIN] md5 password with javascirpt

2003-12-05 Thread N . A . Morgan
Try this site: http://pajhome.org.uk/ for the MD5.js file. Lots of security tips and tricks. -Original Message- From: Exiang [mailto:[EMAIL PROTECTED] Sent: 05 December 2003 08:39 To: [EMAIL PROTECTED] Subject: [PHP-WIN] md5 password with javascirpt Hi, question: how to encode a passwo

Re: [PHP-WIN] md5 password with javascirpt

2003-12-05 Thread Piotr Pluciennik
Hi, There is widely used script called md5.js with all necessary functions - I've seen it in lot of places, but currently don't remember where. Try to search... HTH Piotr --- Exiang <[EMAIL PROTECTED]> wrote: > Hi, > question: how to encode a password in client side > with javascipt.. > > thanx

Re: [PHP-WIN] MD5

2001-03-13 Thread Erin's Fan Club
Hi list and Ben: > I have a string that I want to MD5 (No prizes for guessing its a > password), what I want to do is MD5 two strings (one supplied > by the user, and one by my server) and compare them. How can > I do this? <> MD stands for message digest, in brief a fixed length hash based up

RE: [PHP-WIN] MD5

2001-03-12 Thread Ignatius Teo
Ben, You should be able to do a normal == comparison or a strcmp(). But that's not really what you're after is it? Have a look at PHPLIB (phplib.netuse.de), in particular, the crypto_secure authentication stuff. I think you'll find what you're looking for. Ignatius > -Original Me