Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/crypt_modules/sunmd5/
H A Dsunmd5.c252 char *puresalt; in crypt_genhash_impl() local
291 if ((puresalt = malloc(len)) == NULL) { in crypt_genhash_impl()
294 (void) strlcpy(puresalt, salt, len); in crypt_genhash_impl()
296 puresalt = strdup(salt); in crypt_genhash_impl()
297 if (puresalt == NULL) { in crypt_genhash_impl()
314 MD5Update(&data.context, (uchar_t *)puresalt, strlen(puresalt)); in crypt_genhash_impl()
444 (void) snprintf(ctbuffer, ctbufflen, "%s$", puresalt); in crypt_genhash_impl()