Re: Password encryption

2001-12-13 Thread William R. Mussatto
2001, sherzodR wrote: > Date: Wed, 12 Dec 2001 18:42:35 -0600 (CST) > From: sherzodR <[EMAIL PROTECTED]> > To: ST Ooi <[EMAIL PROTECTED]> > Cc: [EMAIL PROTECTED] > Subject: Re: Password encryption > > > When you're insering a new password: > >

Re: Password encryption

2001-12-12 Thread sherzodR
When you're insering a new password: INSERT INTO user SET password=PASSWORD('secret'); But you can't retrieve the original password. If a user forgets/looses his/her password, just reset a password with something else, and send him/her that new password And when you want to check an inputted p

Re: Password encryption

2001-12-12 Thread tc lewis
you can use the password() mysql function to crypt it. you cannot retrieve the encrypted password -- only compare input (password() the input) against the saved encrypted password. if the resulting text matches, the password is good. if not, the authentication in your application should fail.

Re: Password encryption

2001-06-10 Thread Rolf Hopkins
generate a new one if it wasn't. - Original Message - From: "WCBaker" <[EMAIL PROTECTED]> To: "Rolf Hopkins" <[EMAIL PROTECTED]>; "MySQL" <[EMAIL PROTECTED]> Sent: Monday, June 11, 2001 8:31 Subject: Re: Password encryption > >

Re: Password encryption

2001-06-10 Thread Rolf Hopkins
sage - > From: "Rolf Hopkins" <[EMAIL PROTECTED]> > To: "Leon Mergen" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> > Sent: Sunday, June 10, 2001 3:43 PM > Subject: Re: Password encryption > > > > I used the function password() if that helps b

Re: Password encryption

2001-06-10 Thread Rolf Hopkins
I used the function password() if that helps but of course you can't "decode" it. - Original Message - From: "Leon Mergen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, June 09, 2001 22:44 Subject: Re: Password encryption > Anyo

Re: Password encryption

2001-06-10 Thread Leon Mergen
vance, Leon Mergen [EMAIL PROTECTED] BlazeBox, Inc. ICQ: 55677353 - Original Message - From: "Rolf Hopkins" <[EMAIL PROTECTED]> To: "Leon Mergen" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, June 10, 2001 3:43 PM Subject: Re: Password encryption

Re: Password encryption

2001-06-09 Thread Leon Mergen
To: "Leon Mergen" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, June 08, 2001 9:47 PM Subject: Re: Password encryption > Look in the manual about the ENCODE/DECODE functions. > > j- k- > > On Friday 08 June 2001 10:28, you wrote: > > Hello a

Re: Password encryption

2001-06-09 Thread Olexandr Vynnychenko
Hello Leon, Friday, June 08, 2001, 9:28:05 PM, you wrote: LM> Hello all, LM> I have some questions about password encryption. I want to make some sort of encryption method that disables a human to read the password, but does allow my (php) script to convert the encoded LM> password to a human

Re: Password encryption

2001-06-08 Thread Joshua J. Kugler
Look in the manual about the ENCODE/DECODE functions. j- k- On Friday 08 June 2001 10:28, you wrote: > Hello all, > > I have some questions about password encryption. I want to make some sort > of encryption method that disables a human to read the password, but does > allow my (php) scr