Re: [PHP] strange crypt() problem

2003-06-20 Thread Don Read
On 19-Jun-2003 Huzz wrote: > I have this bit of code to crypt user password in user registration as > shown > below. > > $cryptpass=crypt($makepass); > which generated crypted password like eg 37Q9fppLHc4fQ with php 4.0 > > And am using the codes below to check for valid login.. > // $pass - f

Re: [PHP] strange crypt() problem

2003-06-20 Thread Awlad Hussain
; Sent: Friday, June 20, 2003 12:06 AM Subject: RE: [PHP] strange crypt() problem > It looks like "Some operating systems support more than one type of > encryption. In fact, sometimes the standard DES-based encryption is > replaced by an MD5-based encryption algorithm. The encryption

Re: [PHP] strange crypt() problem

2003-06-19 Thread Huzz
y the crypt() is behaving |strangely. | |Sævar - ICELAND | |-Original Message- |From: Huzz [mailto:[EMAIL PROTECTED] |Sent: 19. júní 2003 22:43 |To: [EMAIL PROTECTED] |Subject: Re: [PHP] strange crypt() problem | |I already have about 1000 members their password crypted using crypt(); |would t

RE: [PHP] strange crypt() problem

2003-06-19 Thread Jeff Harris
9. júní 2003 22:43 |To: [EMAIL PROTECTED] |Subject: Re: [PHP] strange crypt() problem | |I already have about 1000 members their password crypted using crypt(); |would they able to login using their password or they have to change it |again?? | |Thanks | | |"SævË Ölêöyp" <[EMAI

RE: [PHP] strange crypt() problem

2003-06-19 Thread Sævar Öfjörð
strangely. Sævar - ICELAND -Original Message- From: Huzz [mailto:[EMAIL PROTECTED] Sent: 19. júní 2003 22:43 To: [EMAIL PROTECTED] Subject: Re: [PHP] strange crypt() problem I already have about 1000 members their password crypted using crypt(); would they able to login using their p

Re: [PHP] strange crypt() problem

2003-06-19 Thread Huzz
I already have about 1000 members their password crypted using crypt(); would they able to login using their password or they have to change it again?? Thanks "SævË Ölêöyp" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Try using md5() instead because it is more widely supported th

RE: [PHP] strange crypt() problem

2003-06-19 Thread Sævar Öfjörð
Try using md5() instead because it is more widely supported than crypt() and it leaves no room for errors. Hope it helps, Sævar ICELAND -Original Message- From: Huzz [mailto:[EMAIL PROTECTED] Sent: 19. júní 2003 21:43 To: [EMAIL PROTECTED] Subject: [PHP] strange crypt() problem I have