krzysztofzylka / hash
哈希库
1.0.2
2023-12-13 21:13 UTC
Requires
- php: >=8.1
Requires (Dev)
- phpunit/phpunit: ^10.5.3
README
composer require krzysztofzylka/hash
方法
哈希字符串
\Krzysztofzylka\Hash\Hash::hash(string $string, string $algorithm = 'pbkdf2'): string
检查哈希
\Krzysztofzylka\Hash\Hash::checkHash(string $hash, string $string): bool
示例
$hash = \Krzysztofzylka\Hash\Hash::hash('hash'); $checkHash = \Krzysztofzylka\Hash\Hash::checkHash($hash, 'hash'); $checkHash2 = \Krzysztofzylka\Hash\Hash::checkHash($hash, 'test'); var_dump( $hash, //$003$e661174850a6c7fcf99a $checkHash, //true $checkHash2 //false );