Searched defs:pwu_rep (Results 1 - 7 of 7) sorted by relevance
/osnet-11/usr/src/lib/pam_modules/authtok_get/ |
H A D | authtok_get.c | 231 pwu_repository_t *pwu_rep = NULL; local 276 pwu_rep = PWU_DEFAULT_REP; 278 if ((pwu_rep = calloc(1, sizeof (*pwu_rep))) == NULL) 280 pwu_rep->type = auth_rep->type; 281 pwu_rep->scope = auth_rep->scope; 282 pwu_rep->scope_len = auth_rep->scope_len; 289 res = __get_authtoken_attr(user, pwu_rep, al); 291 if (pwu_rep != PWU_DEFAULT_REP) 292 free(pwu_rep); [all...] |
/osnet-11/usr/src/lib/pam_modules/authtok_store/ |
H A D | authtok_store.c | 99 pwu_repository_t *pwu_rep; local 215 pwu_rep = PWU_DEFAULT_REP; 217 if ((pwu_rep = calloc(1, sizeof (*pwu_rep))) == NULL) 219 pwu_rep->type = auth_rep->type; 220 pwu_rep->scope = auth_rep->scope; 221 pwu_rep->scope_len = auth_rep->scope_len; 224 res = __set_authtoken_attr(user, oldpw, pwu_rep, &l, &updated_reps); 226 if (pwu_rep != PWU_DEFAULT_REP) 227 free(pwu_rep); [all...] |
/osnet-11/usr/src/lib/pam_modules/passwd_auth/ |
H A D | passwd_auth.c | 88 pwu_repository_t *pwu_rep = NULL; local 134 pwu_rep = PWU_DEFAULT_REP; 136 if ((pwu_rep = calloc(1, sizeof (*pwu_rep))) == NULL) 138 pwu_rep->type = auth_rep->type; 139 pwu_rep->scope = auth_rep->scope; 140 pwu_rep->scope_len = auth_rep->scope_len; 143 res = __user_to_authenticate(user, pwu_rep, &auth_user, &privileged); 225 res = __get_authtoken_attr(auth_user, pwu_rep, al); 320 if (pwu_rep) [all...] |
/osnet-11/usr/src/lib/pam_modules/dhkeys/ |
H A D | dhkeys.c | 403 pwu_repository_t *pwu_rep; local 439 if ((pwu_rep = calloc(1, sizeof (*pwu_rep))) == NULL) 441 pwu_rep->type = auth_rep->type; 442 pwu_rep->scope = auth_rep->scope; 443 pwu_rep->scope_len = auth_rep->scope_len; 445 pwu_rep = PWU_DEFAULT_REP; 451 result = __get_authtoken_attr(uname, pwu_rep, attr_pw); 453 if (pwu_rep != PWU_DEFAULT_REP) 454 free(pwu_rep); [all...] |
/osnet-11/usr/src/lib/pam_modules/unix_account/ |
H A D | unix_acct.c | 288 pwu_repository_t *pwu_rep = PWU_DEFAULT_REP; local 332 pwu_rep = PWU_DEFAULT_REP; 334 if ((pwu_rep = calloc(1, sizeof (*pwu_rep))) == NULL) { 338 pwu_rep->type = auth_rep->type; 339 pwu_rep->scope = auth_rep->scope; 340 pwu_rep->scope_len = auth_rep->scope_len; 349 result = __get_authtoken_attr(user, pwu_rep, attr_pw); 391 result = __get_authtoken_attr(user, pwu_rep, attr_spw); 430 if (pwu_rep ! [all...] |
/osnet-11/usr/src/lib/pam_modules/unix_auth/ |
H A D | unix_auth.c | 202 pwu_repository_t *pwu_rep; local 247 if ((pwu_rep = calloc(1, sizeof (*pwu_rep))) == NULL) 249 pwu_rep->type = auth_rep->type; 250 pwu_rep->scope = auth_rep->scope; 251 pwu_rep->scope_len = auth_rep->scope_len; 253 pwu_rep = PWU_DEFAULT_REP; 274 result = __get_authtoken_attr(user, pwu_rep, attr_pw); 276 if (pwu_rep != PWU_DEFAULT_REP) 277 free(pwu_rep); [all...] |
/osnet-11/usr/src/lib/pam_modules/authtok_check/ |
H A D | authtok_check.c | 150 pwu_repository_t *pwu_rep; local 261 if ((pwu_rep = calloc(1, sizeof (*pwu_rep))) == NULL) 263 pwu_rep->type = pam_rep->type; 264 pwu_rep->scope = pam_rep->scope; 265 pwu_rep->scope_len = pam_rep->scope_len; 267 pwu_rep = PWU_DEFAULT_REP; 272 result = __get_authtoken_attr(user, pwu_rep, attr); 273 if (pwu_rep != PWU_DEFAULT_REP) 274 free(pwu_rep); 714 pwu_repository_t *pwu_rep = PWU_DEFAULT_REP; local [all...] |
Completed in 329 milliseconds