Searched refs:authenticator (Results 1 - 25 of 68) sorted by relevance

123

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DAddress.java45 final OkAuthenticator authenticator; field in class:Address
50 OkAuthenticator authenticator, Proxy proxy, List<Protocol> protocols)
54 if (authenticator == null) throw new IllegalArgumentException("authenticator == null");
62 this.authenticator = authenticator;
102 * Returns the client's authenticator. This method never returns null.
105 return authenticator;
133 && equal(this.authenticator, that.authenticator)
48 Address(String uriHost, int uriPort, SocketFactory socketFactory, SSLSocketFactory sslSocketFactory, HostnameVerifier hostnameVerifier, OkAuthenticator authenticator, Proxy proxy, List<Protocol> protocols) argument
[all...]
H A DOkHttpClient.java67 private OkAuthenticator authenticator; field in class:OkHttpClient
245 * Sets the authenticator used to respond to challenges from the remote web
249 * authenticator will be used.
251 public OkHttpClient setAuthenticator(OkAuthenticator authenticator) { argument
252 this.authenticator = authenticator;
257 return authenticator;
499 if (result.authenticator == null) {
500 result.authenticator = HttpAuthenticator.SYSTEM_DEFAULT;
/external/chromium_org/remoting/protocol/
H A Dpairing_authenticator_base.h9 #include "remoting/protocol/authenticator.h"
15 // The pairing authenticator builds on top of V2Authenticator to add
55 typedef base::Callback<void(scoped_ptr<Authenticator> authenticator)>
61 // Create a V2 authenticator in the specified state, prompting the user for
67 // Amend an authenticator message, for example to add client- or host-specific
77 // The underlying V2 authenticator, created with either the PIN or the
81 // Derived classes must set this to True if the underlying authenticator is
93 scoped_ptr<Authenticator> authenticator);
95 // Set to true if a PIN-based authenticator has been requested but has not
H A Dpairing_authenticator_base.cc61 // The client authenticator creates the underlying authenticator in the ctor
79 // Pass the message to the underlying authenticator for processing, but
148 scoped_ptr<Authenticator> authenticator) {
150 DCHECK(authenticator);
152 v2_authenticator_ = authenticator.Pass();
145 SetAuthenticatorAndProcessMessage( const buzz::XmlElement* message, const base::Closure& resume_callback, scoped_ptr<Authenticator> authenticator) argument
H A Djingle_session_manager.cc8 #include "remoting/protocol/authenticator.h"
49 scoped_ptr<Authenticator> authenticator,
55 session->StartConnection(host_jid, authenticator.Pass(), config.Pass());
109 scoped_ptr<Authenticator> authenticator = local
115 session->InitializeIncomingConnection(message, authenticator.Pass());
47 Connect( const std::string& host_jid, scoped_ptr<Authenticator> authenticator, scoped_ptr<CandidateSessionConfig> config) argument
H A Dsecure_channel_factory.h29 Authenticator* authenticator);
H A Dsession_manager.h26 // method. For outgoing sessions authenticator must be passed to the
131 // |authenticator| is a client authenticator for the session.
135 scoped_ptr<Authenticator> authenticator,
143 // Set authenticator factory that should be used to authenticate
145 // authenticator factory isn't set. Must not be called more than
H A Dsecure_channel_factory.cc9 #include "remoting/protocol/authenticator.h"
17 Authenticator* authenticator)
19 authenticator_(authenticator) {
15 SecureChannelFactory( StreamChannelFactory* channel_factory, Authenticator* authenticator) argument
H A Dfake_authenticator.cc190 FakeAuthenticator* authenticator = new FakeAuthenticator( local
192 authenticator->set_messages_till_started(messages_till_started_);
194 scoped_ptr<Authenticator> result(authenticator);
H A Djingle_session_unittest.cc17 #include "remoting/protocol/authenticator.h"
254 scoped_ptr<Authenticator> authenticator(new FakeAuthenticator(
258 kHostJid, authenticator.Pass(),
339 scoped_ptr<Authenticator> authenticator(new FakeAuthenticator(
342 kHostJid, authenticator.Pass(), CandidateSessionConfig::CreateDefault());
413 scoped_ptr<Authenticator> authenticator(new FakeAuthenticator(
417 kHostJid, authenticator.Pass(),
442 scoped_ptr<Authenticator> authenticator(new FakeAuthenticator(
446 kHostJid, authenticator.Pass(),
H A Djingle_session.cc15 #include "remoting/protocol/authenticator.h"
106 scoped_ptr<Authenticator> authenticator,
109 DCHECK(authenticator.get());
110 DCHECK_EQ(authenticator->state(), Authenticator::MESSAGE_READY);
113 authenticator_ = authenticator.Pass();
136 scoped_ptr<Authenticator> authenticator) {
139 DCHECK(authenticator.get());
140 DCHECK_EQ(authenticator->state(), Authenticator::WAITING_MESSAGE);
143 authenticator_ = authenticator.Pass();
486 LOG(WARNING) << "Received unexpected authenticator messag
104 StartConnection( const std::string& peer_jid, scoped_ptr<Authenticator> authenticator, scoped_ptr<CandidateSessionConfig> config) argument
134 InitializeIncomingConnection( const JingleMessage& initiate_message, scoped_ptr<Authenticator> authenticator) argument
[all...]
H A Djingle_session.h17 #include "remoting/protocol/authenticator.h"
83 scoped_ptr<Authenticator> authenticator,
91 scoped_ptr<Authenticator> authenticator);
130 // Called after the initial incoming authenticator message is processed.
133 // Called after subsequent authenticator messages are processed.
H A Djingle_session_manager.h54 scoped_ptr<Authenticator> authenticator,
H A Dprotocol_mock_objects.h17 #include "remoting/protocol/authenticator.h"
196 Authenticator* authenticator,
203 scoped_ptr<Authenticator> authenticator,
206 host_jid, authenticator.get(), config.get()));
201 Connect( const std::string& host_jid, scoped_ptr<Authenticator> authenticator, scoped_ptr<CandidateSessionConfig> config) argument
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DRouteSelectorTest.java81 private final OkAuthenticator authenticator = HttpAuthenticator.SYSTEM_DEFAULT; field in class:RouteSelectorTest
87 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null,
107 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null,
129 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator,
147 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator,
165 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null,
183 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null,
201 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null,
237 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null,
256 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, nul
[all...]
/external/wpa_supplicant_8/hostapd/src/radius/
H A Dradius.c398 os_memcpy(msg->hdr->authenticator, req_authenticator,
399 sizeof(msg->hdr->authenticator));
412 md5_vector(4, addr, len, msg->hdr->authenticator);
441 os_memcpy(msg->hdr->authenticator, req_hdr->authenticator, 16);
450 if (md5_vector(2, addr, len, msg->hdr->authenticator) < 0)
469 os_memset(msg->hdr->authenticator, 0, MD5_MAC_LEN);
474 md5_vector(2, addr, len, msg->hdr->authenticator);
490 os_memcpy(msg->hdr->authenticator, req_authenticator, MD5_MAC_LEN);
495 md5_vector(2, addr, len, msg->hdr->authenticator);
[all...]
/external/wpa_supplicant_8/src/radius/
H A Dradius.c398 os_memcpy(msg->hdr->authenticator, req_authenticator,
399 sizeof(msg->hdr->authenticator));
412 md5_vector(4, addr, len, msg->hdr->authenticator);
441 os_memcpy(msg->hdr->authenticator, req_hdr->authenticator, 16);
450 if (md5_vector(2, addr, len, msg->hdr->authenticator) < 0)
469 os_memset(msg->hdr->authenticator, 0, MD5_MAC_LEN);
474 md5_vector(2, addr, len, msg->hdr->authenticator);
490 os_memcpy(msg->hdr->authenticator, req_authenticator, MD5_MAC_LEN);
495 md5_vector(2, addr, len, msg->hdr->authenticator);
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/radius/
H A Dradius.c398 os_memcpy(msg->hdr->authenticator, req_authenticator,
399 sizeof(msg->hdr->authenticator));
412 md5_vector(4, addr, len, msg->hdr->authenticator);
441 os_memcpy(msg->hdr->authenticator, req_hdr->authenticator, 16);
450 if (md5_vector(2, addr, len, msg->hdr->authenticator) < 0)
469 os_memset(msg->hdr->authenticator, 0, MD5_MAC_LEN);
474 md5_vector(2, addr, len, msg->hdr->authenticator);
490 os_memcpy(msg->hdr->authenticator, req_authenticator, MD5_MAC_LEN);
495 md5_vector(2, addr, len, msg->hdr->authenticator);
[all...]
/external/chromium_org/remoting/client/
H A Dchromoting_client.cc53 scoped_ptr<protocol::Authenticator> authenticator,
67 authenticator.Pass(), host_jid, this);
51 Start( SignalStrategy* signal_strategy, scoped_ptr<protocol::Authenticator> authenticator, scoped_ptr<protocol::TransportFactory> transport_factory, const std::string& host_jid, const std::string& capabilities) argument
/external/chromium_org/remoting/host/
H A Dpam_authorization_factory_posix.cc172 scoped_ptr<protocol::Authenticator> authenticator(
175 new PamAuthorizer(authenticator.Pass()));
/external/openssl/crypto/krb5/
H A Dkrb5_asn.h129 ** authenticator[4] EncryptedData
141 KRB5_ENCDATA *authenticator; member in struct:krb5_ap_req_st
193 /* -- Unencrypted authenticator
195 ** authenticator-vno[0] INTEGER,
/external/openssl/include/openssl/
H A Dkrb5_asn.h129 ** authenticator[4] EncryptedData
141 KRB5_ENCDATA *authenticator; member in struct:krb5_ap_req_st
193 /* -- Unencrypted authenticator
195 ** authenticator-vno[0] INTEGER,
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_attr_parse.h35 const u8 *authenticator; /* WPS_AUTHENTICATOR_LEN (8) octets */ member in struct:wps_parse_attr
/external/wpa_supplicant_8/src/wps/
H A Dwps_attr_parse.h35 const u8 *authenticator; /* WPS_AUTHENTICATOR_LEN (8) octets */ member in struct:wps_parse_attr
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_attr_parse.h35 const u8 *authenticator; /* WPS_AUTHENTICATOR_LEN (8) octets */ member in struct:wps_parse_attr

Completed in 305 milliseconds

123