• Home
  • Raw
  • Download

Lines Matching refs:authenticated

355 	int authenticated = 0;  in monitor_child_preauth()  local
381 while (!authenticated) { in monitor_child_preauth()
383 authenticated = (monitor_read(pmonitor, mon_dispatch, &ent) == 1); in monitor_child_preauth()
384 if (authenticated) { in monitor_child_preauth()
390 authenticated = 0; in monitor_child_preauth()
393 if (options.use_pam && authenticated) { in monitor_child_preauth()
399 authenticated = mm_answer_pam_account(pmonitor->m_sendfd, &m); in monitor_child_preauth()
406 auth_log(authctxt, authenticated, auth_method, in monitor_child_preauth()
408 if (!authenticated) in monitor_child_preauth()
846 int authenticated; in mm_answer_authpassword() local
853 authenticated = options.password_authentication && in mm_answer_authpassword()
856 authenticated = 0; in mm_answer_authpassword()
862 buffer_put_int(m, authenticated); in mm_answer_authpassword()
864 debug3("%s: sending result %d", __func__, authenticated); in mm_answer_authpassword()
874 return (authenticated); in mm_answer_authpassword()
2097 int authenticated; in mm_answer_gss_userok() local
2099 authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user); in mm_answer_gss_userok()
2102 buffer_put_int(m, authenticated); in mm_answer_gss_userok()
2104 debug3("%s: sending result %d", __func__, authenticated); in mm_answer_gss_userok()
2110 return (authenticated); in mm_answer_gss_userok()
2283 int authenticated = 0; in mm_answer_jpake_check_confirm() local
2293 authenticated = jpake_check_confirm(pctx->k, in mm_answer_jpake_check_confirm()
2304 buffer_put_int(m, authenticated); in mm_answer_jpake_check_confirm()
2306 debug3("%s: sending result %d", __func__, authenticated); in mm_answer_jpake_check_confirm()
2312 return authenticated; in mm_answer_jpake_check_confirm()