Searched defs:sha512_salt_prefix (Results 1 - 2 of 2) sorted by relevance

/sssd/src/util/crypto/nss/
H A Dnss_sha512crypt.c33 const char sha512_salt_prefix[] = "$6$"; variable
34 #define SALT_PREF_SIZE (sizeof(sha512_salt_prefix) - 1)
95 if (strncmp(salt, sha512_salt_prefix, SALT_PREF_SIZE) == 0) {
270 cp = stpncpy(buffer, sha512_salt_prefix, SALT_PREF_SIZE);
337 int hlen = (sizeof (sha512_salt_prefix) - 1
/sssd/src/util/crypto/libcrypto/
H A Dcrypto_sha512crypt.c35 const char sha512_salt_prefix[] = "$6$"; variable
36 #define SALT_PREF_SIZE (sizeof(sha512_salt_prefix) - 1)
97 if (strncmp(salt, sha512_salt_prefix, SALT_PREF_SIZE) == 0) {
280 cp = stpncpy(buffer, sha512_salt_prefix, SALT_PREF_SIZE);
347 int hlen = (sizeof (sha512_salt_prefix) - 1

Completed in 314 milliseconds