hyperf-chat/app/Helpers/HashHelper.php

44 lines
971 B
PHP

<?php
declare(strict_types=1);
/**
* This is my open source code, please do not use it for commercial applications.
* For the full copyright and license information,
* please view the LICENSE file that was distributed with this source code
*
* @author Yuandong<837215079@qq.com>
* @link https://github.com/gzydong/hyperf-chat
*/
namespace App\Helpers;
/**
* Hash 密码加密辅助类
*
* @package App\Helper
*/
class HashHelper
{
/**
* Hash the given value.
*
* @param string $value
* @return string
*/
public static function make(string $value): string
{
return password_hash($value, PASSWORD_DEFAULT);
}
/**
* Check the given plain value against a hash.
*
* @param string $value
* @param string $hashedValue
* @return bool
*/
public static function check(string $value, string $hashedValue): bool
{
return password_verify($value, $hashedValue);
}
}