Annotation of embedaddon/php/ext/standard/tests/strings/bug62443.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #62443 Crypt SHA256/512 Segfaults With Malformed Salt
        !             3: --FILE--
        !             4: <?php
        !             5: crypt("foo", '$5$'.chr(0).'abc');
        !             6: crypt("foo", '$6$'.chr(0).'abc');
        !             7: echo "OK!";
        !             8: --EXPECT--
        !             9: OK!

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>