📜  laravel 中的文本到 sha256 转换器 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:28.155000             🧑  作者: Mango

代码示例1
$hash = Hash::make('secret');

$input = 'secret';
if(Hash::check($input, $hash)){
    // the input matches the secret
}