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

/u-boot/lib/crypt/
H A Dcrypt-sha512.c35 static const char sha512_salt_prefix[] = "$6$"; variable
57 (sizeof (sha512_salt_prefix) + sizeof (sha512_rounds_prefix) + \
138 if (strncmp (sha512_salt_prefix, salt, sizeof (sha512_salt_prefix) - 1) == 0)
140 salt += sizeof (sha512_salt_prefix) - 1;
284 memcpy (cp, sha512_salt_prefix, sizeof (sha512_salt_prefix) - 1);
285 cp += sizeof (sha512_salt_prefix) - 1;
290 SHA512_HASH_LENGTH - (sizeof (sha512_salt_prefix) - 1),

Completed in 88 milliseconds