基本用法

2018-02-24 15:52 更新

对 A 密码使用Bcrypt 加密

$password = Hash::make('secret');

你也可直接使用 bcrypt 的 function

$password = bcrypt('secret');

对加密的 A 密码进行验证

if (Hash::check('secret', $hashedPassword))
{
    // The passwords match...
}

检查 A 密码是否需要重新加密

if (Hash::needsRehash($hashed))
{
    $hashed = Hash::make('secret');
}
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号