Lines Matching refs:puresalt
252 char *puresalt;
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);