### Description The following code: ```php <?php $hash = password_hash("secret", PASSWORD_BCRYPT); var_dump(password_verify("secret", $hash)); var_dump(password_verify("secret" . chr(0) . "suffix", $hash)); ?> ``` Resulted in this output: ``` bool(true) bool(true) ``` But I expected this output instead: ``` bool(true) bool(false) ``` ### PHP Version ```plain all supported version ``` ### Operating System _No response_
Description
The following code:
Resulted in this output:
But I expected this output instead:
PHP Version
Operating System
No response