Download the PHP package tp5er/think-hashing without Composer
On this page you can find all versions of the php package tp5er/think-hashing. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download tp5er/think-hashing
More information about tp5er/think-hashing
Files in tp5er/think-hashing
Download tp5er/think-hashing
More information about tp5er/think-hashing
Files in tp5er/think-hashing
Vendor tp5er
Package think-hashing
Short Description The thinkphp Hashing package.
License MIT
Homepage https://github.com/pkg6/think-hashing
Package think-hashing
Short Description The thinkphp Hashing package.
License MIT
Homepage https://github.com/pkg6/think-hashing
Please rate this library. Is it a good library?
Informations about the package think-hashing
think-hashing
The thinkphp Hashing package.
安装
composer require tp5er/think-hashing
使用
use tp5er\think\hashing\facade\Hash;
//加密
$hashedValue= Hash::make("123456");
//验证密码是否有效
$check = Hash::check("123456",$hashedValue);
//加密
$hashedValue = hash_make("123456");
//验证密码是否有效
hash_check("123456",$hashedValue);
All versions of think-hashing with dependencies
PHP Build Version
Package Version
The package tp5er/think-hashing contains the following files
Loading the files please wait ....