Lines Matching defs:password
59 * Purpose: Initialize and call lower level routines to change a password
65 * read_old_password (f) function to read old password
66 * read_new_password (f) function to read new and change password
73 * 2 old password wrong
76 * 5 password not typed
85 * If argc is 2, the password for the principal specified in argv[1]
89 * read_old_password is then called to prompt for the old password.
92 * read_new_password is called to read the new password and change the
93 * principal's password (presumably ovsec_kadm_chpass_principal).
98 * Changes the principal's password.
113 char password[255]; /* I don't really like 255 but that's what kinit uses */
193 pwsize = sizeof(password);
194 code = read_old_password(context, password, &pwsize);
197 memset(password, 0, sizeof(password));
204 memset(password, 0, sizeof(password));
224 code = kadm5_init_with_password(princ_str, password, cpw_service,
248 /* Explain policy restrictions on new password if any. */
333 pwsize = sizeof(password);
334 code = read_new_password(server_handle, password, &pwsize, msg_ret, sizeof (msg_ret), princ);
335 memset(password, 0, sizeof(password));