HomeSort by relevance Sort by last modified time
    Searched refs:authenticator (Results 1 - 25 of 115) sorted by null

1 2 3 4 5

  /external/okhttp/src/main/java/com/squareup/okhttp/
Address.java 43 final OkAuthenticator authenticator; field in class:Address
47 HostnameVerifier hostnameVerifier, OkAuthenticator authenticator, Proxy proxy,
51 if (authenticator == null) throw new IllegalArgumentException("authenticator == null");
58 this.authenticator = authenticator;
93 * Returns the client's authenticator. This method never returns null.
96 return authenticator;
123 && equal(this.authenticator, that.authenticator)
    [all...]
OkHttpClient.java 55 private OkAuthenticator authenticator; field in class:OkHttpClient
225 * Sets the authenticator used to respond to challenges from the remote web
228 * <p>If unset, the {@link java.net.Authenticator#setDefault system-wide default}
229 * authenticator will be used.
231 public OkHttpClient setAuthenticator(OkAuthenticator authenticator) {
232 this.authenticator = authenticator;
237 return authenticator;
369 result.authenticator = authenticator != nul
    [all...]
  /external/chromium_org/remoting/protocol/
session_manager.h 23 // delegate authentication to an Authenticator implementation. For
26 // method. For outgoing sessions authenticator must be passed to the
70 class Authenticator;
132 // |authenticator| is a client authenticator for the session.
136 scoped_ptr<Authenticator> authenticator,
144 // Set authenticator factory that should be used to authenticate
146 // authenticator factory isn't set. Must not be called more than
pairing_authenticator_base.h 9 #include "remoting/protocol/authenticator.h"
15 // The pairing authenticator builds on top of V2Authenticator to add
39 class PairingAuthenticatorBase : public Authenticator {
44 // Authenticator interface.
54 typedef base::Callback<void(scoped_ptr<Authenticator> authenticator)>
60 // Create a V2 authenticator in the specified state, prompting the user for
66 // Amend an authenticator message, for example to add client- or host-specific
76 // The underlying V2 authenticator, created with either the PIN or the
78 scoped_ptr<Authenticator> v2_authenticator_
    [all...]
pairing_authenticator_base.cc 34 Authenticator::State PairingAuthenticatorBase::state() const {
41 Authenticator::RejectionReason
54 // The client authenticator creates the underlying authenticator in the ctor
72 // Pass the message to the underlying authenticator for processing, but
141 scoped_ptr<Authenticator> authenticator) {
143 DCHECK(authenticator);
145 v2_authenticator_ = authenticator.Pass();
jingle_session_manager.cc 11 #include "remoting/protocol/authenticator.h"
78 scoped_ptr<Authenticator> authenticator,
81 session->StartConnection(host_jid, authenticator.Pass(), config.Pass());
140 scoped_ptr<Authenticator> authenticator = local
146 session->InitializeIncomingConnection(message, authenticator.Pass());
jingle_session_manager.h 63 scoped_ptr<Authenticator> authenticator,
transport.h 103 // |authenticator| is used to secure and authenticate the connection.
106 scoped_ptr<ChannelAuthenticator> authenticator) = 0;
jingle_session.cc 14 #include "remoting/protocol/authenticator.h"
48 Authenticator::RejectionReason reason) {
50 case Authenticator::INVALID_CREDENTIALS:
52 case Authenticator::PROTOCOL_ERROR:
92 scoped_ptr<Authenticator> authenticator,
95 DCHECK(authenticator.get());
96 DCHECK_EQ(authenticator->state(), Authenticator::MESSAGE_READY);
99 authenticator_ = authenticator.Pass()
    [all...]
jingle_session.h 18 #include "remoting/protocol/authenticator.h"
86 scoped_ptr<Authenticator> authenticator,
94 scoped_ptr<Authenticator> authenticator);
133 // Called after the initial incoming authenticator message is processed.
135 // Called after subsequent authenticator messages are processed.
158 scoped_ptr<Authenticator> authenticator_;
protocol_mock_objects.h 17 #include "remoting/protocol/authenticator.h"
193 Authenticator* authenticator,
200 scoped_ptr<Authenticator> authenticator,
203 host_jid, authenticator.get(), config.get()));
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
AuthenticationService.java 17 package com.example.android.samplesync.authenticator;
25 * Service to handle Account authentication. It instantiates the authenticator
32 private Authenticator mAuthenticator;
39 mAuthenticator = new Authenticator(this);
  /external/chromium_org/remoting/tools/
register_host.py 92 authenticator = gaia_auth.GaiaAuthenticator('chromiumsync');
93 auth_token = authenticator.authenticate(email, password)
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/http/
RouteSelectorTest.java 79 private final OkAuthenticator authenticator = HttpAuthenticator.SYSTEM_DEFAULT; field in class:RouteSelectorTest
85 Address address = new Address(uriHost, uriPort, null, null, authenticator, null, transports);
104 Address address = new Address(uriHost, uriPort, null, null, authenticator, null, transports);
125 Address address = new Address(uriHost, uriPort, null, null, authenticator, proxyA, transports);
142 Address address = new Address(uriHost, uriPort, null, null, authenticator, NO_PROXY,
160 Address address = new Address(uriHost, uriPort, null, null, authenticator, null, transports);
177 Address address = new Address(uriHost, uriPort, null, null, authenticator, null, transports);
194 Address address = new Address(uriHost, uriPort, null, null, authenticator, null, transports);
229 Address address = new Address(uriHost, uriPort, null, null, authenticator, null, transports);
247 Address address = new Address(uriHost, uriPort, null, null, authenticator, null, transports)
    [all...]
  /external/wpa_supplicant_8/src/radius/
radius.c 225 { RADIUS_ATTR_MESSAGE_AUTHENTICATOR, "Message-Authenticator",
357 "Message-Authenticator");
387 printf("WARNING: Could not add Message-Authenticator\n");
391 os_memcpy(msg->hdr->authenticator, req_authenticator,
392 sizeof(msg->hdr->authenticator));
405 md5_vector(4, addr, len, msg->hdr->authenticator);
429 wpa_printf(MSG_WARNING, "Could not add Message-Authenticator");
434 os_memcpy(msg->hdr->authenticator, req_hdr->authenticator, 16);
443 if (md5_vector(2, addr, len, msg->hdr->authenticator) < 0
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpAuthenticator.java 22 import java.net.Authenticator;
37 /** Uses the global authenticator to get the password. */
46 PasswordAuthentication auth = Authenticator.requestPasswordAuthentication(url.getHost(),
48 challenge.getRealm(), challenge.getScheme(), url, Authenticator.RequestorType.SERVER);
64 PasswordAuthentication auth = Authenticator.requestPasswordAuthentication(
67 Authenticator.RequestorType.PROXY);
91 public static boolean processAuthHeader(OkAuthenticator authenticator, int responseCode,
110 ? authenticator.authenticateProxy(proxy, url, challenges)
111 : authenticator.authenticate(proxy, url, challenges);
  /development/samples/SampleSyncAdapter/tests/src/com/example/android/samplesync/authenticator/
AuthenticatorActivityTest.java 16 package com.example.android.samplesync.authenticator;
  /external/chromium_org/chrome/browser/chromeos/login/
screen_locker.h 27 class Authenticator;
130 // Sets the authenticator.
131 void SetAuthenticator(Authenticator* authenticator);
149 scoped_refptr<Authenticator> authenticator_;
  /external/chromium_org/remoting/client/
chromoting_client.cc 60 scoped_ptr<protocol::Authenticator> authenticator(
76 authenticator.Pass(),
  /external/chromium_org/remoting/host/
pam_authorization_factory_posix.cc 20 class PamAuthorizer : public protocol::Authenticator {
22 PamAuthorizer(scoped_ptr<protocol::Authenticator> underlying);
25 // protocol::Authenticator interface.
44 scoped_ptr<protocol::Authenticator> underlying_;
49 PamAuthorizer::PamAuthorizer(scoped_ptr<protocol::Authenticator> underlying)
57 protocol::Authenticator::State PamAuthorizer::state() const {
65 protocol::Authenticator::RejectionReason
162 scoped_ptr<protocol::Authenticator>
167 scoped_ptr<protocol::Authenticator> authenticator(
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/krb5/
krb5_asn.h 129 ** authenticator[4] EncryptedData
141 KRB5_ENCDATA *authenticator; member in struct:krb5_ap_req_st
148 /* Authenticator Stuff */
193 /* -- Unencrypted authenticator
194 ** Authenticator ::= [APPLICATION 2] SEQUENCE {
195 ** authenticator-vno[0] INTEGER,
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
krb5_asn.h 129 ** authenticator[4] EncryptedData
141 KRB5_ENCDATA *authenticator; member in struct:krb5_ap_req_st
148 /* Authenticator Stuff */
193 /* -- Unencrypted authenticator
194 ** Authenticator ::= [APPLICATION 2] SEQUENCE {
195 ** authenticator-vno[0] INTEGER,
  /external/openssl/crypto/krb5/
krb5_asn.h 129 ** authenticator[4] EncryptedData
141 KRB5_ENCDATA *authenticator; member in struct:krb5_ap_req_st
148 /* Authenticator Stuff */
193 /* -- Unencrypted authenticator
194 ** Authenticator ::= [APPLICATION 2] SEQUENCE {
195 ** authenticator-vno[0] INTEGER,
  /external/openssl/include/openssl/
krb5_asn.h 129 ** authenticator[4] EncryptedData
141 KRB5_ENCDATA *authenticator; member in struct:krb5_ap_req_st
148 /* Authenticator Stuff */
193 /* -- Unencrypted authenticator
194 ** Authenticator ::= [APPLICATION 2] SEQUENCE {
195 ** authenticator-vno[0] INTEGER,
  /external/wpa_supplicant_8/src/wps/
wps_attr_process.c 16 int wps_process_authenticator(struct wps_data *wps, const u8 *authenticator,
23 if (authenticator == NULL) {
24 wpa_printf(MSG_DEBUG, "WPS: No Authenticator attribute "
31 "validating authenticator");
35 /* Authenticator = HMAC-SHA256_AuthKey(M_prev || M_curr*)
36 * (M_curr* is M_curr without the Authenticator attribute)
44 if (os_memcmp(hash, authenticator, WPS_AUTHENTICATOR_LEN) != 0) {
45 wpa_printf(MSG_DEBUG, "WPS: Incorrect Authenticator");

Completed in 865 milliseconds

1 2 3 4 5