Re: [PHP] crypt() source

2004-10-07 Thread Curt Zirzow
RIEND! > > -Brent > > - Original Message - > From: "Matt" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, October 07, 2004 7:00 PM > Subject: [PHP] crypt() source > > > > Hi i am new to php, and i am writing a small

Re: [PHP] crypt() source

2004-10-07 Thread zareef ahmed
--- Matt <[EMAIL PROTECTED]> wrote: > Hi i am new to php, and i am writing a small user > authentication script. In > the manual i read about using the crypt() function > to generate a hash, and > how you can validate the password using a salt. eg > if (crypt($userinput, $hash) == $hash) > > T

Re: [PHP] crypt() source

2004-10-07 Thread Brent Clements
IL PROTECTED]> Sent: Thursday, October 07, 2004 7:00 PM Subject: [PHP] crypt() source > Hi i am new to php, and i am writing a small user authentication script. In > the manual i read about using the crypt() function to generate a hash, and > how you can validate the password using a

[PHP] crypt() source

2004-10-07 Thread Matt
Hi i am new to php, and i am writing a small user authentication script. In the manual i read about using the crypt() function to generate a hash, and how you can validate the password using a salt. eg if (crypt($userinput, $hash) == $hash) The code works perfectly, however i am writing an appli

[PHP] crypt() source

2004-10-07 Thread Matt
Hi i am new to php, and i am writing a small user authentication script. In the manual i read about using the crypt() function to generate a hash, and how you can validate the password using a salt. eg if (crypt($userinput, $hash) == $hash) The code works perfectly, however i am writing an appli