Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/
H A Dcrypt_sha256.c322 static const char sha256_salt_prefix[] = "$5$"; variable
373 if (strncmp(sha256_salt_prefix, salt, sizeof(sha256_salt_prefix) - 1) == 0) { in php_sha256_crypt_r()
375 salt += sizeof(sha256_salt_prefix) - 1; in php_sha256_crypt_r()
524 cp = __php_stpncpy(buffer, sha256_salt_prefix, MAX(0, buflen)); in php_sha256_crypt_r()
525 buflen -= sizeof(sha256_salt_prefix) - 1; in php_sha256_crypt_r()
608 int needed = (sizeof(sha256_salt_prefix) - 1 in php_sha256_crypt()

Completed in 7 milliseconds