password_compat
password_compat copied to clipboard
Compatibility with the password_* functions that ship with PHP 5.5
can this work out? just wanted to test out with this library, feel free to correct me if I'm wrong
I have tested this library for PHP 5.3.28 (I know requirement is >=5.3.7) end generated password / Hash is not validated by nodejs
Native password_verify() **does** accept old insecure DES hashes (https://3v4l.org/hKl4X). This pull request re-enables verifying (but not creating) them.
More info: https://docs.travis-ci.com/user/languages/php/#choosing-php-versions-to-test-against
Hi all, This is just a "service message". For those people who use this library and use [`PHPCompatibility`](https://github.com/PHPCompatibility/PHPCompatibility) in their CI process, there is now a custom ruleset available which...
105 | ERROR | Function mcrypt_create_iv() is deprecated since PHP 7.1 and removed since PHP 7.2; Use random_bytes() or OpenSSL instead 105 | ERROR | Extension 'mcrypt' is deprecated since...
Fixed the sentence structure to make it easier to read.
mysql function against string injection not working
When I run the following code in PHP 5.4.45 ```php $password = 'XXX'; $salt = 'XX'; var_dump(password_verify($password, crypt($password, $salt))); ``` I get `false` as result. When I run the same...
The error message in PHP core function is the same: `password_hash() expects at least 2 parameters, 0 given` In the backported function, there is something like this: `Missing argument 1....`...