1
我不明白這是如何工作你如何使用BCRYPT
$hash = $bcrypt->hash($_POST['password']); //this string is stored in mysql
然後驗證與PHP/MySQL的密碼,當用戶登錄,
//get hash string from above from mysql, then
if ($bcrypt->verify($_POST['password'], $row['password'])) {
echo "Logged in.";
}
A.),我做這是否正確?
B.)如果是這樣,如果bcrypt沒有存儲在數據庫中,bcrypt如何記住salt?