Lines Matching refs:algo
61 static zend_string* php_password_get_algo_name(const php_password_algo algo) in php_password_get_algo_name() argument
63 switch (algo) { in php_password_get_algo_name()
166 php_password_algo algo; in PHP_FUNCTION() local
176 algo = php_password_determine_algo(hash); in PHP_FUNCTION()
177 algo_name = php_password_get_algo_name(algo); in PHP_FUNCTION()
179 switch (algo) { in PHP_FUNCTION()
209 add_assoc_long(return_value, "algo", algo); in PHP_FUNCTION()
220 php_password_algo algo; in PHP_FUNCTION() local
232 algo = php_password_determine_algo(hash); in PHP_FUNCTION()
234 if ((zend_long)algo != new_algo) { in PHP_FUNCTION()
238 switch (algo) { in PHP_FUNCTION()
294 php_password_algo algo; in PHP_FUNCTION() local
301 algo = php_password_determine_algo(hash); in PHP_FUNCTION()
303 switch(algo) { in PHP_FUNCTION()
415 zend_long algo = PHP_PASSWORD_DEFAULT; in PHP_FUNCTION() local
423 Z_PARAM_LONG(algo) in PHP_FUNCTION()
428 switch (algo) { in PHP_FUNCTION()
562 php_error_docref(NULL, E_WARNING, "Unknown password hashing algorithm: " ZEND_LONG_FMT, algo); in PHP_FUNCTION()