Searched refs:authok (Results 1 – 7 of 7) sorted by relevance
| /mirbsd/src/usr.bin/ssh/ |
| D | auth-bsdauth.c | 89 int authok; in bsdauth_respond() local 100 authok = auth_userresponse(authctxt->as, responses[0], 0); in bsdauth_respond() 102 debug3("bsdauth_respond: <%s> = <%d>", responses[0], authok); in bsdauth_respond() 104 return (authok == 0) ? -1 : 0; in bsdauth_respond()
|
| D | monitor.c | 668 int authok; in mm_answer_bsdauthrespond() local 674 authok = options.challenge_response_authentication && in mm_answer_bsdauthrespond() 677 debug3("%s: <%s> = <%d>", __func__, response, authok); in mm_answer_bsdauthrespond() 681 buffer_put_int(m, authok); in mm_answer_bsdauthrespond() 683 debug3("%s: sending authenticated: %d", __func__, authok); in mm_answer_bsdauthrespond() 688 return (authok != 0); in mm_answer_bsdauthrespond()
|
| D | monitor_wrap.c | 815 int authok; in mm_bsdauth_respond() local 828 authok = buffer_get_int(&m); in mm_bsdauth_respond() 831 return ((authok == 0) ? -1 : 0); in mm_bsdauth_respond()
|
| /mirbsd/src/usr.bin/sudo/auth/ |
| D | bsdauth.c | 104 int authok = 0; local 149 authok = auth_userresponse(as, (char *)pass, 1); 156 if (authok)
|
| /mirbsd/src/usr.bin/login/ |
| D | login.c | 157 int error, homeless, needto, authok, tries, backoff; in main() local 169 authok = 0; in main() 497 authok = auth_getstate(as); in main() 503 if ((authok & AUTH_PWEXPIRED) && lastchance) { in main() 504 authok = AUTH_OKAY; in main() 507 if ((authok & AUTH_ALLOW) == 0) in main() 536 if (authok & AUTH_SILENT) in main()
|
| /mirbsd/src/usr.bin/su/ |
| D | su.c | 329 int authok; in verify_user() local 358 authok = auth_getstate(as); in verify_user() 359 if ((authok & AUTH_ALLOW) == 0) { in verify_user()
|
| /mirbsd/src/libexec/ftpd/ |
| D | ftpd.c | 888 int authok, flags; in pass() local 900 authok = 0; in pass() 912 authok = auth_userresponse(as, passwd, 0); in pass() 915 if (authok == 0) { in pass() 941 authok = auth_approval(as, lc, pw->pw_name, "ftp"); in pass() 944 if (authok == 0) { in pass()
|