assertchris / hash-compat
Provides forward compatibility with the hash_* functions that ship with PHP 5.5
Installs: 130 209
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Requires (Dev)
- phpunit/phpunit: ~4.6
README
Provides forward compatibility with the hash_*
functions that ship with PHP 5.5.
Installation
$ composer require assertchris/hash-compat
Usage
$salt = mcrypt_create_iv(16, MCRYPT_DEV_URANDOM);
$pbkdf2 = hash_pbkdf2("sha256", "password", $salt, 1000, 20);
Caution
The PBKDF2 method should not be used for hashing passwords for storage. password_hash()
or crypt()
with CRYPT_BLOWFISH
are better suited for password storage.
Security Vulnerabilities
If you have found a security issue, please contact the author directly at cgpitt@gmail.com.