Home
last modified time | relevance | path

Searched refs:authok (Results 1 – 3 of 3) sorted by relevance

/external/openssh/
Dauth-bsdauth.c101 int authok; in bsdauth_respond() local
112 authok = auth_userresponse(authctxt->as, responses[0], 0); in bsdauth_respond()
114 debug3("bsdauth_respond: <%s> = <%d>", responses[0], authok); in bsdauth_respond()
116 return (authok == 0) ? -1 : 0; in bsdauth_respond()
Dmonitor.c896 int authok; in mm_answer_bsdauthrespond() local
904 authok = options.challenge_response_authentication && in mm_answer_bsdauthrespond()
907 debug3("%s: <%s> = <%d>", __func__, response, authok); in mm_answer_bsdauthrespond()
911 buffer_put_int(m, authok); in mm_answer_bsdauthrespond()
913 debug3("%s: sending authenticated: %d", __func__, authok); in mm_answer_bsdauthrespond()
919 return (authok != 0); in mm_answer_bsdauthrespond()
949 int authok; in mm_answer_skeyrespond() local
953 authok = (options.challenge_response_authentication && in mm_answer_skeyrespond()
961 buffer_put_int(m, authok); in mm_answer_skeyrespond()
963 debug3("%s: sending authenticated: %d", __func__, authok); in mm_answer_skeyrespond()
[all …]
Dmonitor_wrap.c750 int authok; in mm_bsdauth_respond() local
763 authok = buffer_get_int(&m); in mm_bsdauth_respond()
766 return ((authok == 0) ? -1 : 0); in mm_bsdauth_respond()
810 int authok; in mm_skey_respond() local
823 authok = buffer_get_int(&m); in mm_skey_respond()
826 return ((authok == 0) ? -1 : 0); in mm_skey_respond()