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: INSERT INTO user SET password=PASSWORD('secret'); But you can't

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: No

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 Leon Mergen
, 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 I used the function password() if that helps

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 Anyone has any idea how much this encryption method sucks

Re: Password encryption

2001-06-10 Thread Rolf Hopkins
;) Thanks in advance, 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 I used the function

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-09 Thread Leon Mergen
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 all, I have some questions about password encryption. I want to make some

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

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) script