1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
--TEST--
Test error operation of password_hash()
--FILE--
<?php
//-=-=-=-
var_dump(password_hash());
var_dump(password_hash("foo"));
var_dump(password_hash("foo", array()));
var_dump(password_hash("foo", 19, new StdClass));
var_dump(password_hash("foo", PASSWORD_BCRYPT, "baz"));
var_dump(password_hash(array(), PASSWORD_BCRYPT));
var_dump(password_hash("123", PASSWORD_BCRYPT, array("salt" => array())));
/* Non-string salt, checking for memory leaks */
var_dump(password_hash('123', PASSWORD_BCRYPT, array('salt' => 1234)));
?>
--EXPECTF--
Warning: password_hash() expects at least 2 parameters, 0 given in %s on line %d
NULL
Warning: password_hash() expects at least 2 parameters, 1 given in %s on line %d
NULL
Warning: password_hash() expects parameter 2 to be long, array given in %s on line %d
NULL
Warning: password_hash(): Unknown password hashing algorithm: 19 in %s on line %d
NULL
Warning: password_hash() expects parameter 3 to be array, string given in %s on line %d
NULL
Warning: password_hash() expects parameter 1 to be string, array given in %s on line %d
NULL
Warning: password_hash(): Non-string salt parameter supplied in %s on line %d
NULL
Warning: password_hash(): Provided salt is too short: 4 expecting 22 in %s on line %d
NULL
|