crutch/hash-native
最新稳定版本:v1.0.0
Composer 安装命令:
composer require crutch/hash-native
包简介
Native PHP hash implementation
README 文档
README
Hash interface
Install
composer require crutch/hash-native
Using
<?php $hasher = new \Crutch\NativeHash\BcryptHash(10); // one argument cost // or $hasher = new \Crutch\NativeHash\Argon2IHash(65536, 4, 1); // arguments: memoryCost, timeCost, threads // or $hasher = new \Crutch\NativeHash\Argon2IdHash(65536, 4, 1); // arguments: memoryCost, timeCost, threads $value = 'password'; $hash = $hasher->hash($value); var_dump($hasher->verify($hash, $value)); // true var_dump($hasher->isNeedRehash($hash)); // false
统计信息
- 总下载量: 39
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-01-18