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
to check an inputted password agains the encrypted one; SELECT * FROM user WHERE login="user_id" AND password=PASSWORD("inserted_password"); ST Ooi wrote: SO: Date: Thu, 13 Dec 2001 07:52:59 +0800 SO: From: ST Ooi <[EMAIL PROTECTED]> SO: To: [EMAIL PROTECTE

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.

Password encryption

2001-12-12 Thread ST Ooi
How can I encrypt password in database and how can I retrieve the encrypted password? Thanks ST Ooi Malaysia - Original Message - From: "Dan Nelson" <[EMAIL PROTECTED]> To: "James McLaughlin" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, December 13, 2001 7:06 AM Subject:

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
IL PROTECTED]> Sent: Sunday, June 10, 2001 22:09 Subject: Re: Password encryption > Hello Rolf, > > I need the decoding option, since I need to have a password lookup > function... > > Hmmm... offcourse, I *COULD* completely rewrite it, and instead of lookup up > a password, m

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> pass

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 >

Password encryption

2001-06-08 Thread Leon Mergen
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) script to convert the encoded password to a human-readable password, the member originally entered and the member