mirror of
https://github.com/php/php-src.git
synced 2026-04-20 06:21:12 +02:00
11 lines
180 B
PHP
11 lines
180 B
PHP
--TEST--
|
|
Bug #62443 Crypt SHA256/512 Segfaults With Malformed Salt
|
|
--FILE--
|
|
<?php
|
|
crypt("foo", '$5$'.chr(0).'abc');
|
|
crypt("foo", '$6$'.chr(0).'abc');
|
|
echo "OK!";
|
|
?>
|
|
--EXPECT--
|
|
OK!
|