Generally speaking, a website that provides member registration must collect user passwords. How to save user passwords is a problem. Of course we cannot store passwords in clear text in the database, because in this case, ordinary administrators can view the user password, which is obviously very dangerous for users.
So how to solve this problem? We can adopt this strategy.
First, let’s introduce how to use the MD5 function in PHP:
Copy the code The code is as follows:
$pswd1=md5("cenusdesign");
echo $pswd1; //The running result is: fc60ec37d1c08d5b0fb67a8cd934d5ba
$pswd2=md5("Cenusdesign");
echo $pswd2; //The running result is: 067577d9fc109c80538c81d6f02bd293
?>
Obviously, after md5 encryption, the original "cenusdesign" was transformed into a set of 32-bit Strings, and even a single letter case change can drastically change this set of strings.
Cenus Design recommends that when registering a user, the password should first be converted to MD5, and then the encrypted database should be converted. When the user logs in, the password is first converted to MD5, and then compared with the set of MD5-encrypted strings in the database. In this way, the password comparison operation can be completed without knowing the user's exact password.
Author: Sunec
Original Published by: Cenus Blog
All rights reserved. When reprinting, the author, original source and this statement must be indicated in the form of a link.
http://www.bkjia.com/PHPjc/319127.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/319127.htmlTechArticleGenerally speaking, a website that provides member registration must collect user passwords. How to save user passwords is a problem. . Of course we cannot store the password in clear text in the data...