Lines Matching refs:encrypted
85 static char encrypted[128]; /* _PASSWORD_LEN in <pwd.h> on OpenBSD */
298 encrypted[i++] = '$';
299 encrypted[i++] = BCRYPT_VERSION;
301 encrypted[i++] = minor;
302 encrypted[i++] = '$';
304 (void) snprintf(encrypted + i, 4, "%2.2u$", logr);
306 encode_base64((uint8_t *)encrypted + i + 3, csalt, BCRYPT_MAXSALT);
307 encode_base64((uint8_t *)encrypted + strlen(encrypted), ciphertext,
309 return (encrypted);