Lines Matching +full:user +full:- +full:management
8 // http://www.apache.org/licenses/LICENSE-2.0
31 * This module is intended to verify special group user password matches the
35 * used for other purpose like authentication, session & account management.
55 /* Password Management API's */
59 int retval = -1; in pam_sm_chauthtok()
60 const char *user = NULL; in pam_sm_chauthtok() local
79 "password - unable to get new password"); in pam_sm_chauthtok()
83 retval = pam_get_user(pamh, &user, NULL); in pam_sm_chauthtok()
90 // Verify whether the user belongs to special group. in pam_sm_chauthtok()
93 while (*(grp->gr_mem) != NULL) { in pam_sm_chauthtok()
94 if (strcmp(user, *grp->gr_mem) == 0) { in pam_sm_chauthtok()
98 (grp->gr_mem)++; in pam_sm_chauthtok()
105 size_t user_len = strlen(user); in pam_sm_chauthtok()
109 "Password length (%zu) / User name length " in pam_sm_chauthtok()