Home | History | Annotate | Download | only in libcrypt

Lines Matching defs:encrypted

79 static char    encrypted[_PASSWORD_LEN];
306 encrypted[i++] = '$';
307 encrypted[i++] = BCRYPT_VERSION;
309 encrypted[i++] = minor;
310 encrypted[i++] = '$';
312 snprintf(encrypted + i, 4, "%2.2u$", logr);
314 encode_base64((u_int8_t *) encrypted + i + 3, csalt, BCRYPT_MAXSALT);
315 encode_base64((u_int8_t *) encrypted + strlen(encrypted), ciphertext,
318 return encrypted;