qing7777 / hash
Hyperf-ext hash Package
Installs: 47
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
Type:package
Requires
- php: >=7.2
- ext-swoole: >=4.4
Requires (Dev)
- mockery/mockery: 0.9.*
- phpunit/phpunit: ~4.1
This package is auto-updated.
Last update: 2025-03-09 02:35:35 UTC
README
Require this package with composer:
composer require qing7777/hash
Configuration
To use your own settings, publish config.
php bin/hyperf.php vendor:publish qing7260/hash
config/autoload/hash.php
获取Hash
use Qing7777\Hash\Hash; $str = '12345'; $encryptedStr = Hash::make($str);
or
use Hyperf\Utils\ApplicationContext; use Qing7777\Hash\HashInterface; $str = '12345'; $HashInterface = ApplicationContext::getContainer()->get(HashInterface::class); $HashInterface->make($str);
使用指定Hash算法加密
use Qing7777\Hash\Hash; $str = '12345'; // Supported: "bcrypt", "argon" $encryptedStr = Hash::driver("argon")->make($str);