基本用法
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');
}
以上内容是否对您有帮助:
← 哈希
更多建议: