-
Notifications
You must be signed in to change notification settings - Fork 415
Open
Description
OK at a very inopportune moment, I learn that this third party library just doesn't work on one of my servers that badly needs these password hash functions.
my code:
require_once 'password.php'; // the password_compat library
var_dump(password_hash("foo", PASSWORD_DEFAULT));
the output:
bool(false)
BOOO! I'm pissed. The code seems to get all the way through the process until it gets to this point:
$hash = $hash_format . $salt;
echo "hash is $hash\n";
echo "password is $password\n";
$ret = crypt($password, $hash);
echo "ret is $ret \n";
if (!is_string($ret) || PasswordCompat\binary\_strlen($ret) != $resultLength) {
die("returning false, string length is " . PasswordCompat\binary\_strlen($ret) . " whereas resultLength is " . $resultL$
return false;
}
I've no idea what's failing but it looks like the crypt function isn't holding up its end of the bargain. The output:
hash is $2y$10$4yM5nzUadsYLVf.TBcowte
password is foo
ret is $2zJyhpjk3l9E
returning false, string length is 13 whereas resultLength is 60
What the heck?
Metadata
Metadata
Assignees
Labels
No labels