Home
last modified time | relevance | path

Searched refs:authenticated (Results 1 – 25 of 50) sorted by relevance

12

/external/openssh/
Dauth1.c117 int authenticated = 0; in auth1_process_password() local
131 authenticated = PRIVSEP(auth_password(authctxt, password)); in auth1_process_password()
135 authenticated = 0; in auth1_process_password()
141 return (authenticated); in auth1_process_password()
148 int authenticated = 0; in auth1_process_rsa() local
156 authenticated = auth_rsa(authctxt, n); in auth1_process_rsa()
159 return (authenticated); in auth1_process_rsa()
166 int keybits, authenticated = 0; in auth1_process_rhosts_rsa() local
192 authenticated = auth_rhosts_rsa(authctxt, client_user, in auth1_process_rhosts_rsa()
198 return (authenticated); in auth1_process_rhosts_rsa()
[all …]
Dauth2.c219 int authenticated = 0; in input_userauth_request() local
283 authenticated = m->userauth(authctxt); in input_userauth_request()
285 userauth_finish(authctxt, authenticated, method); in input_userauth_request()
293 userauth_finish(Authctxt *authctxt, int authenticated, char *method) in userauth_finish() argument
297 if (!authctxt->valid && authenticated) in userauth_finish()
302 if (authenticated && authctxt->pw->pw_uid == 0 && in userauth_finish()
304 authenticated = 0; in userauth_finish()
311 if (options.use_pam && authenticated) { in userauth_finish()
326 if (authenticated && cray_access_denied(authctxt->user)) { in userauth_finish()
327 authenticated = 0; in userauth_finish()
[all …]
Dauth2-kbdint.c47 int authenticated = 0; in userauth_kbdint() local
57 authenticated = auth2_challenge(authctxt, devs); in userauth_kbdint()
61 return authenticated; in userauth_kbdint()
Dauth2-passwd.c53 int authenticated = 0; in userauth_passwd() local
72 authenticated = 1; in userauth_passwd()
76 return authenticated; in userauth_passwd()
Dauth-chall.c85 int authenticated = 0; in verify_response() local
94 authenticated = 1; in verify_response()
102 authenticated = 1; in verify_response()
114 return authenticated; in verify_response()
Dauth2-gss.c233 int authenticated; in input_gssapi_exchange_complete() local
247 authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user)); in input_gssapi_exchange_complete()
254 userauth_finish(authctxt, authenticated, "gssapi-with-mic"); in input_gssapi_exchange_complete()
262 int authenticated = 0; in input_gssapi_mic() local
282 authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user)); in input_gssapi_mic()
294 userauth_finish(authctxt, authenticated, "gssapi-with-mic"); in input_gssapi_mic()
Dauth2-hostbased.c65 int authenticated = 0; in userauth_hostbased() local
120 authenticated = 0; in userauth_hostbased()
124 authenticated = 1; in userauth_hostbased()
128 debug2("userauth_hostbased: authenticated %d", authenticated); in userauth_hostbased()
136 return authenticated; in userauth_hostbased()
Dauth2-pubkey.c76 int authenticated = 0; in userauth_pubkey() local
141 authenticated = 0; in userauth_pubkey()
145 authenticated = 1; in userauth_pubkey()
169 if (authenticated != 1) in userauth_pubkey()
172 debug2("userauth_pubkey: authenticated %d pkalg %s", authenticated, pkalg); in userauth_pubkey()
177 return authenticated; in userauth_pubkey()
Dmonitor.c355 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
[all …]
Dauth.c254 auth_log(Authctxt *authctxt, int authenticated, char *method, char *info) in auth_log() argument
263 if (authenticated == 1 || in auth_log()
272 authmsg = authenticated ? "Accepted" : "Failed"; in auth_log()
284 if (authenticated == 0 && !authctxt->postponed && in auth_log()
291 if (authenticated) in auth_log()
297 if (authenticated == 0 && !authctxt->postponed) in auth_log()
Dauth2-chall.c284 int authenticated = 0, res; in input_userauth_info_response() local
321 authenticated = authctxt->valid ? 1 : 0; in input_userauth_info_response()
336 if (authenticated) { in input_userauth_info_response()
344 userauth_finish(authctxt, authenticated, method); in input_userauth_info_response()
Dauth2-jpake.c84 int authenticated = 0; in userauth_jpake() local
94 authenticated = auth2_jpake_start(authctxt); in userauth_jpake()
97 return authenticated; in userauth_jpake()
535 int authenticated = 0; in input_userauth_jpake_client_confirm() local
551 authenticated = authctxt->valid ? 1 : 0; in input_userauth_jpake_client_confirm()
559 userauth_finish(authctxt, authenticated, method_jpake.name); in input_userauth_jpake_client_confirm()
Dmonitor_wrap.c346 int authenticated = 0; in mm_auth_password() local
357 authenticated = buffer_get_int(&m); in mm_auth_password()
362 __func__, authenticated ? "" : "not "); in mm_auth_password()
363 return (authenticated); in mm_auth_password()
1278 int authenticated = 0; in mm_ssh_gssapi_userok() local
1286 authenticated = buffer_get_int(&m); in mm_ssh_gssapi_userok()
1289 debug3("%s: user %sauthenticated",__func__, authenticated ? "" : "not "); in mm_ssh_gssapi_userok()
1290 return (authenticated); in mm_ssh_gssapi_userok()
Dauth.h51 int authenticated; /* authenticated and alarms cancelled */ member
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
DConnection.java90 private boolean authenticated = false; field in Connection
180 if (authenticated) in authenticateWithDSA()
195authenticated = am.authenticatePublicKey(user, pem.toCharArray(), password, getOrCreateSecureRND()… in authenticateWithDSA()
197 return authenticated; in authenticateWithDSA()
261 if (authenticated) in authenticateWithKeyboardInteractive()
273 authenticated = am.authenticateInteractive(user, submethods, cb); in authenticateWithKeyboardInteractive()
275 return authenticated; in authenticateWithKeyboardInteractive()
307 if (authenticated) in authenticateWithPassword()
322 authenticated = am.authenticatePassword(user, password); in authenticateWithPassword()
324 return authenticated; in authenticateWithPassword()
[all …]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/auth/
DAuthenticationManager.java53 private boolean authenticated = false; field in AuthenticationManager
161 authenticated = true; in initialize()
177 return authenticated; in initialize()
260 authenticated = true; in authenticatePublicKey()
290 return authenticated; in authenticateNone()
315 authenticated = true; in authenticatePassword()
364 authenticated = true; in authenticateInteractive()
/external/ppp/pppd/plugins/
Dwinbind.c269 int authenticated = NOT_AUTHENTICATED; /* not auth */ in run_ntlm_auth() local
412 authenticated = AUTHENTICATED; in run_ntlm_auth()
415 authenticated = NOT_AUTHENTICATED; in run_ntlm_auth()
427 authenticated = NOT_AUTHENTICATED; in run_ntlm_auth()
431 authenticated = NOT_AUTHENTICATED; in run_ntlm_auth()
454 if ((authenticated == AUTHENTICATED) && nt_key && !got_user_session_key) { in run_ntlm_auth()
458 return authenticated; in run_ntlm_auth()
/external/apache-harmony/support/src/test/java/tests/support/
DSupport_HttpServer.java220 boolean authenticated = false, contentLength = false, chunked = false; in run()
236 authenticated = true; in run()
270 authenticateTest(authenticated); in run()
336 private void authenticateTest(boolean authenticated) { in authenticateTest() argument
346 if (!authenticated) { in authenticateTest()
/external/chromium/chrome/browser/sync/engine/
Dall_status.cc84 const bool online = status_.authenticated && in CalcStatusChanges()
128 status_.authenticated = true; in HandleServerConnectionEvent()
130 status_.authenticated = false; in HandleServerConnectionEvent()
/external/dbus/dbus/
Ddbus-transport.c164 transport->authenticated = FALSE; in _dbus_transport_init_base()
696 if (transport->authenticated) in _dbus_transport_get_is_authenticated()
788 transport->authenticated = maybe_authenticated; in _dbus_transport_get_is_authenticated()
806 if (!transport->authenticated) in _dbus_transport_get_is_anonymous()
1296 if (!transport->authenticated) in _dbus_transport_get_unix_user()
1329 if (!transport->authenticated) in _dbus_transport_get_unix_process_id()
1362 if (!transport->authenticated) in _dbus_transport_get_adt_audit_session_data()
1419 if (!transport->authenticated) in _dbus_transport_get_windows_user()
Ddbus-transport-protected.h114 …unsigned int authenticated : 1; /**< Cache of auth state; use _dbus_transport_get_is_a… member
/external/chromium/chrome/browser/sync/
Dsync_ui_util.cc107 if (status.authenticated && !service->observed_passphrase_required()) { in GetStatusInfo()
166 } else if (!status.authenticated) { in GetStatusInfo()
342 new FundamentalValue(full_status.authenticated)); in ConstructAboutInformation()
/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
Dbugzilla.py211 self.authenticated = False
400 if self.authenticated:
405 self.authenticated = True
411 while not self.authenticated:
434 self.authenticated = True
/external/chromium/testing/gmock/scripts/
Dupload.py145 self.authenticated = False
237 self.authenticated = True
310 if not self.authenticated:
373 self.authenticated = True
490 server.authenticated = True
/external/chromium/testing/gtest/scripts/
Dupload.py145 self.authenticated = False
237 self.authenticated = True
310 if not self.authenticated:
373 self.authenticated = True
490 server.authenticated = True

12