Searched refs:authok (Results 1 – 3 of 3) sorted by relevance
/external/openssh/ |
D | auth-bsdauth.c | 94 int authok; in bsdauth_respond() local 105 authok = auth_userresponse(authctxt->as, responses[0], 0); in bsdauth_respond() 107 debug3("bsdauth_respond: <%s> = <%d>", responses[0], authok); in bsdauth_respond() 109 return (authok == 0) ? -1 : 0; in bsdauth_respond()
|
D | monitor.c | 912 int authok; in mm_answer_bsdauthrespond() local 918 authok = options.challenge_response_authentication && in mm_answer_bsdauthrespond() 921 debug3("%s: <%s> = <%d>", __func__, response, authok); in mm_answer_bsdauthrespond() 925 buffer_put_int(m, authok); in mm_answer_bsdauthrespond() 927 debug3("%s: sending authenticated: %d", __func__, authok); in mm_answer_bsdauthrespond() 932 return (authok != 0); in mm_answer_bsdauthrespond() 962 int authok; in mm_answer_skeyrespond() local 966 authok = (options.challenge_response_authentication && in mm_answer_skeyrespond() 974 buffer_put_int(m, authok); in mm_answer_skeyrespond() 976 debug3("%s: sending authenticated: %d", __func__, authok); in mm_answer_skeyrespond() [all …]
|
D | monitor_wrap.c | 986 int authok; in mm_bsdauth_respond() local 999 authok = buffer_get_int(&m); in mm_bsdauth_respond() 1002 return ((authok == 0) ? -1 : 0); in mm_bsdauth_respond() 1046 int authok; in mm_skey_respond() local 1059 authok = buffer_get_int(&m); in mm_skey_respond() 1062 return ((authok == 0) ? -1 : 0); in mm_skey_respond()
|