Lines Matching refs:password

39     krb5_data *password;
47 password = (krb5_data *) gak_data;
64 if (password->length == 0 || password->data[0] == '\0') {
76 prompt.reply = password;
98 ret = krb5_c_string_to_key_with_params(context, etype, password, salt,
110 const char *password)
114 s = strdup(password);
118 if (ctx->password.data != NULL) {
119 zap(ctx->password.data, ctx->password.length);
120 krb5_free_data_contents(context, &ctx->password);
123 ctx->password.data = s;
124 ctx->password.length = strlen(s);
126 ctx->gak_data = &ctx->password;
135 char *password,
147 * use this information to provide account/password expiration warnings.
151 return (__krb5_get_init_creds_password(context, creds, client, password,
165 char *password,
196 if (password && password[0]) {
197 if (strlcpy(pw0.data, password, sizeof(pw0array)) >= sizeof(pw0array)) {
201 pw0.length = strlen(password);
277 is not password expired, or if it is but there's no prompter,
284 /* historically the default has been to prompt for password change.
285 * if the change password prompt option has not been set, we continue
292 /* ok, we have an expired password. Give the user a few chances
297 prompt[0].prompt = "Enter new password";
378 /* the password change was successful. Get an initial ticket
393 /* if getting the password was successful, then check to see if the
394 password is about to expire, and warn if so */
417 "Warning: Your password will expire in less than one hour.");
420 "Warning: Your password will expire in %d hour%s.",
424 "Warning: Your password will expire in %d days.",
454 "Warning: Your password will expire in less than one hour on %s",
458 "Warning: Your password will expire in %d hour%s on %s",
462 "Warning: Your password will expire in %d days on %s",
505 If password is non-NULL, it is converted using the cryptosystem entry
507 If password is passed as NULL, the password is read from the terminal,
518 const char *password, krb5_ccache ccache,
530 if (password && password[0]) {
531 if (strlcpy(pw0.data, password, sizeof(pw0array)) >= sizeof(pw0array))
533 pw0.length = strlen(password);