我正在使用Andrew Moore先生的散列用户密码的方法(How do you use bcrypt for hashing passwords in PHP?)。我做的是我有一个注册页面,它使用
$bcrypt = new Bcrypt(12);
$pass = $_POST['password']; //register password field
$hash= $bcrypt->hash($pass);
// then inserts $hash into database with users registered email (I've checked my mysql database and it indeed has an hashed item
然后我有一个登录页面,包含电子邮件和密码字段。我的想法是电子邮件地址在我的数据库中是唯一的。所以考虑到这一点,我创建了一个脚本,首先检查用户的电子邮件地址,然后如果有现有的,请用此验证哈希密码
$bcrypt = new Bcrypt(12);
$email = $_POST['email']; //from login email field
$pass_l = $_POST['password']; // from login password field
$hash_1= $bcrypt->hash($pass_1);
$chk_email= $dbh->prepare("SELECT password FROM table WHERE email = ?");
$chk_email -> execute(array($email));
while($row = $chk_email->fetch(PDO::FETCH_ASSOC)){
$chk_pass = $row['password']; //inside a while loop to get the password
$pass_isGood = $bcrypt->verify($hash_1, $chk_pass);
var_dump($pass_isGood); // I'm getting false
}
我不确定我做错了什么,我应该成真。我已将tablefield设置为text
甚至varchar(256)
答案 0 :(得分:7)
使用Andrew Moore's class,您需要调用类verify()
方法来验证用户的密码是否与哈希匹配。传递给它的两个参数是用户输入的明文密码和存储在数据库中的哈希值。
您似乎已将第二个哈希密码传递给verify()
,这就是为什么它无效。将明文密码作为第一个参数传递。
答案 1 :(得分:4)
所以只是要明确并建立@ Michael的回答(因为我也在查看Andrew Mooore's解决方案):
而不是:
$hash_1= $bcrypt->hash($pass_1);
$chk_pass = $row['password']; //inside a while loop to get the password
$pass_isGood = $bcrypt->verify($hash_1, $chk_pass);
你需要这个:
$pass_l = $_POST['password'];
$chk_pass = $row['password']; //inside a while loop to get the password
$pass_isGood = $bcrypt->verify($pass_l, $chk_pass);
//notice how 1st parameter of verify(is the text input and not its hashed form