-7
在我的登錄頁面中,我收到password_verify後的錯誤,如果我使用hash_equals驗證密碼。需要知道原因。爲什麼hash_equals和password_verify無法正常工作?
第二個問題是每次我通過更改密碼頁更改密碼hash_equals不驗證密碼。下面是
if (!password_verify($password, $user['password'])) {
$errors[]='Password does not match';
}
if (!hash_equals($password, $user['password'])) {
$errors[]='Password does not match';
}
您是否閱讀過關於這兩個函數的手冊? – Mjh