RE: [PHP-DB] MySQLPHP decrypt(password)

2005-02-28 Thread moses Woldeselassie
I get a user password without changing a user password? kind regards m gt;From: quot;Bastien Koertquot; lt;[EMAIL PROTECTED]gt; gt;To: [EMAIL PROTECTED], php-db@lists.php.net gt;Subject: RE: [PHP-DB] MySQLPHP decrypt(password) gt;Date: Fri, 25 Feb 2005 14:04:30 -0500 gt; gt;You can't. Its an MD5

RE: [PHP-DB] MySQLPHP decrypt(password)

2005-02-28 Thread moses Woldeselassie
;Subject: RE: [PHP-DB] MySQLPHP decrypt(password) gt;Date: Mon, 28 Feb 2005 09:31:20 -0500 gt; gt;There needs to be a separate login page...The previous page was simply to change the password... gt; gt;here is my login function... gt; gt

RE: [PHP-DB] MySQLPHP decrypt(password)

2005-02-28 Thread Bastien Koert
Password and MD$ return different values. They are not compatible. Since both are one way encryptions, you can not retrive the orginal value From: moses Woldeselassie [EMAIL PROTECTED] To: [EMAIL PROTECTED], php-db@lists.php.net Subject: RE: [PHP-DB] MySQLPHP decrypt(password) Date: Mon, 28 Feb

[PHP-DB] MySQLPHP decrypt(password)

2005-02-25 Thread moses Woldeselassie
hi all I am using password() to crypt a user password online. but how do i decrypt a user password, when user forgot his/her password? kind regards m -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] MySQLPHP decrypt(password)

2005-02-25 Thread Martin Norland
moses Woldeselassie wrote: hi all I am using password() to crypt a user password online. but how do i decrypt a user password, when user forgot his/her password? kind regards m You don't - that's the point. You have to provide them with a way to reset their password, based on some other method

RE: [PHP-DB] MySQLPHP decrypt(password)

2005-02-25 Thread Bastien Koert
@lists.php.net Subject: [PHP-DB] MySQLPHP decrypt(password) Date: Fri, 25 Feb 2005 10:20:55 + hi all I am using password() to crypt a user password online. but how do i decrypt a user password, when user forgot his/her password? kind regards m -- PHP Database Mailing List (http://www.php.net

Re: [PHP-DB] MySQLPHP decrypt(password)

2005-02-25 Thread Robby Russell
On Fri, 2005-02-25 at 10:20 +, moses Woldeselassie wrote: hi all I am using password() to crypt a user password online. but how do i decrypt a user password, when user forgot his/her password? kind regards m You don't. You make them reset their password. -Robby --