Home
last modified time | relevance | path

Searched refs:Authenticator (Results 1 – 25 of 34) sorted by relevance

12

/external/chromium/chrome/browser/chromeos/login/
Dauthenticator_unittest.cc13 EXPECT_EQ(lower_case, Authenticator::Canonicalize(lower_case)); in TEST()
17 EXPECT_EQ(Authenticator::Canonicalize("user@what.com"), in TEST()
18 Authenticator::Canonicalize("UsEr@what.com")); in TEST()
22 EXPECT_EQ(Authenticator::Canonicalize("user@what.com"), in TEST()
23 Authenticator::Canonicalize("UsEr@what.COM")); in TEST()
27 EXPECT_NE(Authenticator::Canonicalize("u.ser@what.com"), in TEST()
28 Authenticator::Canonicalize("UsEr@what.com")); in TEST()
32 EXPECT_EQ(Authenticator::Canonicalize("u.ser@what.com"), in TEST()
33 Authenticator::Canonicalize("U.sEr@what.com")); in TEST()
37 EXPECT_EQ(Authenticator::Canonicalize("us.er@gmail.com"), in TEST()
[all …]
Dauthenticator.cc18 const char Authenticator::kSpecialCaseDomain[] = "gmail.com";
20 Authenticator::Authenticator(LoginStatusConsumer* consumer) in Authenticator() function in chromeos::Authenticator
24 Authenticator::~Authenticator() {} in ~Authenticator()
27 std::string Authenticator::Canonicalize(const std::string& email_address) { in Canonicalize()
Dauthenticator.h24 class Authenticator : public base::RefCountedThreadSafe<Authenticator> {
29 explicit Authenticator(LoginStatusConsumer* consumer);
30 virtual ~Authenticator();
100 DISALLOW_COPY_AND_ASSIGN(Authenticator);
Dscreen_locker.h31 class Authenticator; variable
145 void SetAuthenticator(Authenticator* authenticator);
203 scoped_refptr<Authenticator> authenticator_;
Dlogin_performer.cc288 &Authenticator::LoginOffTheRecord)); in LoginOffTheRecord()
295 &Authenticator::RecoverEncryptedData, in RecoverEncryptedData()
305 &Authenticator::ResyncEncryptedData, in ResyncEncryptedData()
472 &Authenticator::AuthenticateToLogin, in StartAuthentication()
486 &Authenticator::RetryAuth, in StartAuthentication()
Dlogin_utils.h24 class Authenticator; variable
69 virtual Authenticator* CreateAuthenticator(LoginStatusConsumer* consumer) = 0;
Dmock_authenticator.h24 class MockAuthenticator : public Authenticator {
29 : Authenticator(consumer), in MockAuthenticator()
131 virtual Authenticator* CreateAuthenticator(LoginStatusConsumer* consumer) { in CreateAuthenticator()
Dparallel_authenticator.cc56 : Authenticator(consumer), in ParallelAuthenticator()
73 std::string canonicalized = Authenticator::Canonicalize(username); in AuthenticateToLogin()
101 new AuthAttemptState(Authenticator::Canonicalize(username), in AuthenticateToUnlock()
252 new AuthAttemptState(Authenticator::Canonicalize(username), in RetryAuth()
Dlogin_performer.h153 scoped_refptr<Authenticator> authenticator_;
Dparallel_authenticator.h55 class ParallelAuthenticator : public Authenticator,
Duser_image_downloader.cc161 if (Authenticator::Canonicalize(email) == username_) in IsUserEntry()
Dlogin_utils.cc130 virtual Authenticator* CreateAuthenticator(LoginStatusConsumer* consumer);
517 Authenticator* LoginUtilsImpl::CreateAuthenticator( in CreateAuthenticator()
Dgoogle_authenticator.h37 class GoogleAuthenticator : public Authenticator, public GaiaAuthConsumer {
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DAuthenticatorTest.java22 import java.net.Authenticator;
30 import java.net.Authenticator.RequestorType;
41 assertEquals(RequestorType.PROXY, Authenticator.RequestorType in test_RequestorType_valueOfLjava_lang_String()
43 assertEquals(RequestorType.SERVER, Authenticator.RequestorType in test_RequestorType_valueOfLjava_lang_String()
46 RequestorType rt = Authenticator.RequestorType.valueOf("BADNAME"); in test_RequestorType_valueOfLjava_lang_String()
54 Authenticator.RequestorType.valueOf(null); in test_RequestorType_valueOfLjava_lang_String()
79 Authenticator.setDefault(mock); in test_requestPasswordAuthentication_InetAddress_int_String_String_String()
80 Authenticator.requestPasswordAuthentication(addr, -1, "http", "promt", "HTTP"); in test_requestPasswordAuthentication_InetAddress_int_String_String_String()
91 Authenticator.setDefault(mock); in test_requestPasswordAuthentication_String_InetAddress_int_String_String_String()
92 Authenticator.requestPasswordAuthentication("test_host", addr, -1, "http", "promt", "HTTP"); in test_requestPasswordAuthentication_String_InetAddress_int_String_String_String()
[all …]
/external/wpa_supplicant_8/hostapd/
DREADME2 Authenticator and RADIUS authentication server
57 server for MAC address based access control, IEEE 802.1X Authenticator
59 Authenticator and dynamic TKIP/CCMP keying.
115 IEEE 802.1X uses elements called Supplicant, Authenticator, Port
118 Server. An access point includes an Authenticator that relays the packets
120 Port Access Entity (PAE) with Authenticator functionality for
125 between a Supplicant and an Authenticator are sent using EAP over LAN
126 (EAPOL) and the Authenticator relays these frames to the Authentication
129 Authenticator, in which case there is no need for additional protocol
138 frames to be passed between the Supplicant and the Authenticator even
[all …]
/external/chromium/chrome/browser/ui/webui/options/chromeos/
Daccounts_options_handler.cc85 users_settings()->WhitelistUser(Authenticator::Canonicalize(email)); in WhitelistUser()
94 users_settings()->UnwhitelistUser(Authenticator::Canonicalize(email)); in UnwhitelistUser()
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
Dwpa_background.sgml56 master session key for the Authenticator (AP) and Supplicant
61 keys between the Authenticator and Supplicant. This handshake is
62 also used to verify that both Authenticator and Supplicant know
Dwpa_supplicant.sgml55 Authenticator and EAP authentication with Authentication
101 authentication server (proxied by the Authenticator in the
117 Handshake and Group Key Handshake with the Authenticator
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
DHttpURLConnectionTest.java21 import java.net.Authenticator;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
DHttpsURLConnectionTest.java27 import java.net.Authenticator;
579 Authenticator.setDefault(new Authenticator() { in testProxyAuthConnection()
668 Authenticator.setDefault(new Authenticator() { in testProxyAuthConnection_doOutput()
/external/okhttp/src/main/java/libcore/net/http/
DHttpURLConnectionImpl.java25 import java.net.Authenticator;
437 PasswordAuthentication auth = Authenticator.requestPasswordAuthentication( in getAuthorizationCredentials()
/external/okhttp/src/test/java/libcore/net/http/
DURLConnectionTest.java29 import java.net.Authenticator;
80 private static final Authenticator SIMPLE_AUTHENTICATOR = new Authenticator() {
112 Authenticator.setDefault(null); in tearDown()
672 Authenticator.setDefault(SIMPLE_AUTHENTICATOR); in testProxyAuthenticateOnConnect()
960 Authenticator.setDefault(SIMPLE_AUTHENTICATOR); in testAuthenticateWithStreamingPost()
1141 Authenticator.setDefault(SIMPLE_AUTHENTICATOR); in testAuthenticateWithPost()
1176 Authenticator.setDefault(SIMPLE_AUTHENTICATOR); in testAuthenticateWithGet()
/external/wpa_supplicant_6/wpa_supplicant/
Deap_testing.txt5 - Linked some parts of IEEE 802.1X Authenticator implementation from
13 integrated) Authenticator.
127 6) Authenticator simulator required patching for handling Access-Accept within
/external/wpa_supplicant_8/wpa_supplicant/
Deap_testing.txt5 - Linked some parts of IEEE 802.1X Authenticator implementation from
13 integrated) Authenticator.
127 6) Authenticator simulator required patching for handling Access-Accept within
DREADME231 the Authenticator (AP) and Supplicant (client station).
235 the Authenticator and Supplicant. This handshake is also used to
236 verify that both Authenticator and Supplicant know the master session
261 negotiation with a WPA Authenticator and EAP authentication with
278 Authenticator in the AP)
282 with the Authenticator (AP)

12