ये उदाहरण php.net से हैं। आपको धन्यवाद, मैंने अभी-अभी नए php हैशिंग फंक्शन के बारे में सीखा।
संभावनाओं और सर्वोत्तम प्रथाओं के बारे में जानने के लिए php दस्तावेज़ पढ़ें:http ://www.php.net/manual/en/function.password-hash.php
पासवर्ड हैश सहेजें:
$options = [
'cost' => 11,
];
// Get the password from post
$passwordFromPost = $_POST['password'];
$hash = password_hash($passwordFromPost, PASSWORD_BCRYPT, $options);
// Now insert it (with login or whatever) into your database, use mysqli or pdo!
पासवर्ड हैश प्राप्त करें:
// Get the password from the database and compare it to a variable (for example post)
$passwordFromPost = $_POST['password'];
$hashedPasswordFromDB = ...;
if (password_verify($passwordFromPost, $hashedPasswordFromDB)) {
echo 'Password is valid!';
} else {
echo 'Invalid password.';
}