Home
last modified time | relevance | path

Searched refs:crypt_res (Results 1 – 1 of 1) sorted by relevance

/PHP-5.4/ext/standard/
H A Dcrypt.c155 char *crypt_res; in PHP_FUNCTION() local
206 crypt_res = php_sha512_crypt_r(str, salt, output, needed); in PHP_FUNCTION()
207 if (!crypt_res || (salt[0]=='*' && salt[1]=='0')) { in PHP_FUNCTION()
230 if (!crypt_res || (salt[0]=='*' && salt[1]=='0')) { in PHP_FUNCTION()
254 if (!crypt_res || (salt[0]=='*' && salt[1]=='0')) { in PHP_FUNCTION()
269 crypt_res = _crypt_extended_r(str, salt, &buffer); in PHP_FUNCTION()
270 if (!crypt_res || (salt[0]=='*' && salt[1]=='0')) { in PHP_FUNCTION()
277 RETURN_STRING(crypt_res, 1); in PHP_FUNCTION()
293 crypt_res = crypt_r(str, salt, &buffer); in PHP_FUNCTION()
294 if (!crypt_res || (salt[0]=='*' && salt[1]=='0')) { in PHP_FUNCTION()
[all …]

Completed in 5 milliseconds