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

/freebsd-13-stable/crypto/openssh/
H A Dauth-bsdauth.c101 int authok; local
112 authok = auth_userresponse(authctxt->as, responses[0], 0);
114 debug3("bsdauth_respond: <%s> = <%d>", responses[0], authok);
116 return (authok == 0) ? -1 : 0;
H A Dmonitor.c965 int r, authok; local
974 authok = options.challenge_response_authentication &&
977 debug3("%s: <%s> = <%d>", __func__, response, authok);
981 if ((r = sshbuf_put_u32(m, authok)) != 0)
984 debug3("%s: sending authenticated: %d", __func__, authok);
990 return (authok != 0);
H A Dmonitor_wrap.c887 int r, authok; local
902 if ((r = sshbuf_get_u32(m, &authok)) != 0)
906 return ((authok == 0) ? -1 : 0);

Completed in 127 milliseconds