TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
304 B
14 lines
304 B
--TEST--
|
|
Test Blowfish crypt() does not fall back to DES when rounds are not specified,
|
|
or Blowfish is not available.
|
|
--FILE--
|
|
<?php
|
|
$crypt = crypt('U*U', '$2a$CCCCCCCCCCCCCCCCCCCCC.E5YPO9kmyuRGyh0XouQYb4YMJKvyOeW');
|
|
if ($crypt==='*0') {
|
|
echo "OK\n";
|
|
} else {
|
|
echo "Not OK\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
OK
|
|
|