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

/osnet-11/usr/src/lib/crypt_modules/sunmd5/
H A Dsunmd5.c252 char *puresalt; local
282 * Extract the puresalt (if it exists) from the existing salt string
283 * $md5[,rounds=%d]$<puresalt>$<optional existing encoding>
291 if ((puresalt = malloc(len)) == NULL) {
294 (void) strlcpy(puresalt, salt, len);
296 puresalt = strdup(salt);
297 if (puresalt == NULL) {
314 MD5Update(&data.context, (uchar_t *)puresalt, strlen(puresalt));
444 (void) snprintf(ctbuffer, ctbufflen, "%s$", puresalt);
[all...]

Completed in 15 milliseconds