これがどのように機能するのかわかりません
$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 はどのようにソルトを記憶しますか?