Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/
H A Dcrypt_sha512.c358 static const char sha512_rounds_prefix[] = "rounds="; variable
411 if (strncmp(salt, sha512_rounds_prefix, sizeof(sha512_rounds_prefix) - 1) == 0) { in php_sha512_crypt_r()
412 const char *num = salt + sizeof(sha512_rounds_prefix) - 1; in php_sha512_crypt_r()
564 int n = _snprintf(cp, MAX(0, buflen), "%s%u$", sha512_rounds_prefix, rounds); in php_sha512_crypt_r()
566 int n = snprintf(cp, MAX(0, buflen), "%s%zu$", sha512_rounds_prefix, rounds); in php_sha512_crypt_r()
655 + sizeof(sha512_rounds_prefix) + 9 + 1 in php_sha512_crypt()

Completed in 9 milliseconds