我不明白这是如何工作的
$hash = $bcrypt->hash($_POST['password']); //this string is stored in mysql
然后当用户登录时,
//get hash string from above from mysql, then
if ($bcrypt->verify($_POST['password'], $row['password'])) {
echo "Logged in.";
}
A.) 我这样做正确吗?
B.)如果是这样,如果盐没有存储在数据库中,bcrypt 如何记住盐?