密码加密在PHP中

时间:2017-12-13 10:40:47

标签: php mysql

我正在构建纯php web应用程序 我目前正在使用md5方法来加密用户密码 我想知道在纯php应用程序中加密密码的最佳方法是什么

1 个答案:

答案 0 :(得分:0)

$hash = \password_hash($password, PASSWORD_DEFAULT);

if (\password_verify($password, $hash)) {
    // Authenticated.
    if (\password_needs_rehash($hash, PASSWORD_DEFAULT)) {
        // Rehash, update database.
    }
}

More info