Home | History | Annotate | Download | only in openssh

Lines Matching defs:authenticated

117 	int authenticated = 0;
131 authenticated = PRIVSEP(auth_password(authctxt, password));
135 authenticated = 0;
141 return (authenticated);
148 int authenticated = 0;
156 authenticated = auth_rsa(authctxt, n);
159 return (authenticated);
166 int keybits, authenticated = 0;
192 authenticated = auth_rhosts_rsa(authctxt, client_user,
198 return (authenticated);
224 int authenticated = 0;
230 authenticated = verify_response(authctxt, response);
234 return (authenticated);
244 int authenticated = 0;
278 authenticated = 0;
310 authenticated = meth->method(authctxt, info, sizeof(info));
311 if (authenticated == -1)
320 if (!authctxt->valid && authenticated)
321 fatal("INTERNAL ERROR: authenticated invalid user %s",
325 if (authenticated && cray_access_denied(authctxt->user)) {
326 authenticated = 0;
333 if (authenticated && authctxt->pw->pw_uid == 0 &&
335 authenticated = 0;
343 if (options.use_pam && authenticated &&
365 auth_log(authctxt, authenticated, get_authname(type), info);
372 if (authenticated)
438 * Loop until the user has been authenticated or the connection is
443 /* The user has been authenticated and accepted. */