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 code with PHP's native `password_verify` function, I get `true`