Searched defs:authenticator (Results 1 - 25 of 39) sorted by relevance

12

/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpAuthenticator.java37 /** Uses the global authenticator to get the password. */
91 public static boolean processAuthHeader(OkAuthenticator authenticator, int responseCode, argument
110 ? authenticator.authenticateProxy(proxy, url, challenges)
111 : authenticator.authenticate(proxy, url, challenges);
/external/chromium_org/remoting/protocol/
H A Djingle_session_manager.cc10 #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 Dprotocol_mock_objects.h17 #include "remoting/protocol/authenticator.h"
193 Authenticator* authenticator,
200 scoped_ptr<Authenticator> authenticator,
203 host_jid, authenticator.get(), config.get()));
198 Connect( const std::string& host_jid, scoped_ptr<Authenticator> authenticator, scoped_ptr<CandidateSessionConfig> config) argument
H A Dpairing_authenticator_base.cc54 // 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();
138 SetAuthenticatorAndProcessMessage( const buzz::XmlElement* message, const base::Closure& resume_callback, scoped_ptr<Authenticator> authenticator) argument
H A Dconnection_to_host.cc15 #include "remoting/protocol/authenticator.h"
73 scoped_ptr<Authenticator> authenticator,
85 authenticator_ = authenticator.Pass();
69 Connect(SignalStrategy* signal_strategy, const std::string& host_jid, const std::string& host_public_key, scoped_ptr<TransportFactory> transport_factory, scoped_ptr<Authenticator> authenticator, HostEventCallback* event_callback, ClientStub* client_stub, ClipboardStub* clipboard_stub, VideoStub* video_stub, AudioStub* audio_stub) argument
H A Djingle_session.cc14 #include "remoting/protocol/authenticator.h"
92 scoped_ptr<Authenticator> authenticator,
95 DCHECK(authenticator.get());
96 DCHECK_EQ(authenticator->state(), Authenticator::MESSAGE_READY);
99 authenticator_ = authenticator.Pass();
122 scoped_ptr<Authenticator> authenticator) {
125 DCHECK(authenticator.get());
126 DCHECK_EQ(authenticator->state(), Authenticator::WAITING_MESSAGE);
129 authenticator_ = authenticator.Pass();
490 LOG(WARNING) << "Received unexpected authenticator messag
90 StartConnection( const std::string& peer_jid, scoped_ptr<Authenticator> authenticator, scoped_ptr<CandidateSessionConfig> config) argument
120 InitializeIncomingConnection( const JingleMessage& initiate_message, scoped_ptr<Authenticator> authenticator) argument
[all...]
H A Dlibjingle_transport_factory.cc63 scoped_ptr<ChannelAuthenticator> authenticator) OVERRIDE;
168 scoped_ptr<ChannelAuthenticator> authenticator) {
179 authenticator_ = authenticator.Pass();
165 Initialize( const std::string& name, Transport::EventHandler* event_handler, scoped_ptr<ChannelAuthenticator> authenticator) argument
/external/okhttp/src/main/java/com/squareup/okhttp/
H A DAddress.java43 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)
46 Address(String uriHost, int uriPort, SSLSocketFactory sslSocketFactory, HostnameVerifier hostnameVerifier, OkAuthenticator authenticator, Proxy proxy, List<String> transports) argument
[all...]
H A DOkHttpClient.java55 private OkAuthenticator authenticator; field in class:OkHttpClient
225 * Sets the authenticator used to respond to challenges from the remote web
229 * authenticator will be used.
231 public OkHttpClient setAuthenticator(OkAuthenticator authenticator) { argument
232 this.authenticator = authenticator;
237 return authenticator;
369 result.authenticator = authenticator != null
370 ? authenticator
[all...]
/external/chromium/chrome/common/net/gaia/
H A Dgaia_authenticator.h72 const GaiaAuthenticator* authenticator; member in struct:gaia::GaiaAuthEvent
161 GaiaAuthenticator* authenticator; member in struct:gaia::GaiaAuthenticator::AuthParams
192 // currently directly being used in sync/engine/authenticator.cc, which is
/external/chromium_org/chrome/browser/chromeos/login/
H A Dscreen_locker.cc26 #include "chrome/browser/chromeos/login/authenticator.h"
441 void ScreenLocker::SetAuthenticator(Authenticator* authenticator) { argument
442 authenticator_ = authenticator;
H A Dlogin_utils_browsertest.cc22 #include "chrome/browser/chromeos/login/authenticator.h"
375 scoped_refptr<Authenticator> authenticator = local
377 authenticator->CompleteLogin(ProfileHelper::GetSigninProfile(),
/external/chromium_org/third_party/openssl/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/chromium_org/third_party/openssl/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/okhttp/src/test/java/com/squareup/okhttp/internal/http/
H A DRouteSelectorTest.java79 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, nul
[all...]
/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_process.c16 int wps_process_authenticator(struct wps_data *wps, const u8 *authenticator, argument
23 if (authenticator == NULL) {
31 "validating authenticator");
44 if (os_memcmp(hash, authenticator, WPS_AUTHENTICATOR_LEN) != 0) {
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_process.c16 int wps_process_authenticator(struct wps_data *wps, const u8 *authenticator, argument
23 if (authenticator == NULL) {
31 "validating authenticator");
44 if (os_memcmp(hash, authenticator, WPS_AUTHENTICATOR_LEN) != 0) {
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_process.c16 int wps_process_authenticator(struct wps_data *wps, const u8 *authenticator, argument
23 if (authenticator == NULL) {
31 "validating authenticator");
44 if (os_memcmp(hash, authenticator, WPS_AUTHENTICATOR_LEN) != 0) {
/external/chromium_org/third_party/openssl/openssl/ssl/
H A Dd1_clnt.c1051 krb5_data authenticator, *authp = NULL; local
1069 if (KRB5SENDAUTH) authp = &authenticator;
1110 ** optional authenticator omitted.
1133 s2n(0,p);/* null authenticator length */
/external/openssl/ssl/
H A Dd1_clnt.c1051 krb5_data authenticator, *authp = NULL; local
1069 if (KRB5SENDAUTH) authp = &authenticator;
1110 ** optional authenticator omitted.
1133 s2n(0,p);/* null authenticator length */
/external/ppp/pppd/
H A Dchap_ms.c858 u_char authResponse[], int authenticator)
884 SetMasterKeys(secret, secret_len, response->NTResp, authenticator);
856 ChapMS2(u_char *rchallenge, u_char *PeerChallenge, char *user, char *secret, int secret_len, MS_Chap2Response *response, u_char authResponse[], int authenticator) argument

Completed in 605 milliseconds

12