Home | History | Annotate | Download | only in racoon

Lines Matching refs:pwd

47 #include <pwd.h>
229 outlet = &xst->authdata.generic.pwd;
254 (xst->authdata.generic.pwd != NULL)) {
258 char *pwd = xst->authdata.generic.pwd;
263 "Got username \"%s\", password \"%s\"\n", usr, pwd);
277 res = privsep_xauth_login_system(usr, pwd);
281 res = xauth_login_radius(iph1, usr, pwd);
287 iph1->remote, usr, pwd);
292 res = xauth_login_ldap(iph1, usr, pwd);
493 xauth_login_radius(iph1, usr, pwd)
496 char *pwd;
517 if (rad_put_string(radius_auth_state, RAD_USER_PASSWORD, pwd) != 0) {
633 xauth_login_pam(port, raddr, usr, pwd)
637 char *pwd;
682 PAM_pwd = pwd;
793 xauth_login_ldap(iph1, usr, pwd)
796 char *pwd;
998 cred.bv_val = pwd;
1185 xauth_login_system(usr, pwd)
1187 char *pwd;
1212 if ((cryptpwd = crypt(pwd, syscryptpwd)) == NULL)
1382 vchar_t *pwd = NULL;
1446 pwd = iph1->rmconf->xauth->pass;
1448 if ((pwd = getpskbyname(usr)) == NULL) {
1461 dlen = pwd->l;
1518 memcpy(data, pwd->v, dlen);
1526 vfree(pwd);
1641 if (xst->authdata.generic.pwd)
1642 racoon_free(xst->authdata.generic.pwd);