Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/
H A Dcrypt_sha256.c325 static const char sha256_rounds_prefix[] = "rounds="; variable
378 if (strncmp(salt, sha256_rounds_prefix, sizeof(sha256_rounds_prefix) - 1) == 0) { in php_sha256_crypt_r()
379 const char *num = salt + sizeof(sha256_rounds_prefix) - 1; in php_sha256_crypt_r()
529 int n = _snprintf(cp, MAX(0, buflen), "%s%u$", sha256_rounds_prefix, rounds); in php_sha256_crypt_r()
531 int n = snprintf(cp, MAX(0, buflen), "%s%zu$", sha256_rounds_prefix, rounds); in php_sha256_crypt_r()
609 + sizeof(sha256_rounds_prefix) + 9 + 1 in php_sha256_crypt()

Completed in 7 milliseconds