/external/chromium/chrome/browser/chromeos/login/ |
authenticator_unittest.cc | 5 #include "chrome/browser/chromeos/login/authenticator.h" 13 EXPECT_EQ(lower_case, Authenticator::Canonicalize(lower_case)); 17 EXPECT_EQ(Authenticator::Canonicalize("user@what.com"), 18 Authenticator::Canonicalize("UsEr@what.com")); 22 EXPECT_EQ(Authenticator::Canonicalize("user@what.com"), 23 Authenticator::Canonicalize("UsEr@what.COM")); 27 EXPECT_NE(Authenticator::Canonicalize("u.ser@what.com"), 28 Authenticator::Canonicalize("UsEr@what.com")); 32 EXPECT_EQ(Authenticator::Canonicalize("u.ser@what.com"), 33 Authenticator::Canonicalize("U.sEr@what.com")) [all...] |
authenticator.cc | 5 #include "chrome/browser/chromeos/login/authenticator.h" 18 const char Authenticator::kSpecialCaseDomain[] = "gmail.com"; 20 Authenticator::Authenticator(LoginStatusConsumer* consumer) 24 Authenticator::~Authenticator() {} 27 std::string Authenticator::Canonicalize(const std::string& email_address) {
|
login_utils.h | 24 class Authenticator; 67 // Creates and returns the authenticator to use. The caller owns the returned 68 // Authenticator and must delete it when done. 69 virtual Authenticator* CreateAuthenticator(LoginStatusConsumer* consumer) = 0;
|
authenticator.h | 24 class Authenticator : public base::RefCountedThreadSafe<Authenticator> { 29 explicit Authenticator(LoginStatusConsumer* consumer); 30 virtual ~Authenticator(); 100 DISALLOW_COPY_AND_ASSIGN(Authenticator);
|
mock_authenticator.h | 11 #include "chrome/browser/chromeos/login/authenticator.h" 24 class MockAuthenticator : public Authenticator { 29 : Authenticator(consumer), 131 virtual Authenticator* CreateAuthenticator(LoginStatusConsumer* consumer) {
|
/libcore/luni/src/test/java/libcore/java/net/ |
OldAuthenticatorRequestorTypeTest.java | 19 import java.net.Authenticator; 25 assertEquals(Authenticator.RequestorType.PROXY, 26 Authenticator.RequestorType.valueOf("PROXY")); 27 assertEquals(Authenticator.RequestorType.SERVER, 28 Authenticator.RequestorType.valueOf("SERVER")); 30 Authenticator.RequestorType.valueOf("TEST"); 37 Authenticator.RequestorType[] expectedTypes = { 38 Authenticator.RequestorType.PROXY, 39 Authenticator.RequestorType.SERVER 42 Authenticator.RequestorType[] types = Authenticator.RequestorType.values() [all...] |
OldAuthenticatorTest.java | 19 import java.net.Authenticator; 30 PasswordAuthentication pa = Authenticator.requestPasswordAuthentication( 35 Authenticator.setDefault(mock); 38 pa = Authenticator.requestPasswordAuthentication(addr, 80, "http", "promt", "HTTP"); 41 Authenticator.setDefault(null); 55 class MockAuthenticator extends Authenticator { 60 public Authenticator.RequestorType getRequestorType() {
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
AuthenticatorTest.java | 22 import java.net.Authenticator; 30 import java.net.Authenticator.RequestorType; 38 * @tests java.net.Authenticator.RequestorType#valueOf(String) 41 assertEquals(RequestorType.PROXY, Authenticator.RequestorType 43 assertEquals(RequestorType.SERVER, Authenticator.RequestorType 46 RequestorType rt = Authenticator.RequestorType.valueOf("BADNAME"); 54 Authenticator.RequestorType.valueOf(null); 64 * @tests java.net.Authenticator.RequestorType#values() 73 * @tests java.net.Authenticator#requestPasswordAuthentication(java.net.InetAddress, int, String, String, String) 79 Authenticator.setDefault(mock) [all...] |
/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/wpa_supplicant_8/hostapd/ |
hostapd.sim_db | 1 # Example GSM authentication triplet file for EAP-SIM authenticator
|
/libcore/luni/src/main/java/java/net/ |
Authenticator.java | 23 * authenticator which extends {@code Authenticator} by {@code 24 * setDefault(Authenticator a)}. Then it should override {@code 31 public abstract class Authenticator { 33 // the default authenticator that needs to be set 34 private static Authenticator thisAuthenticator; 122 * authenticator to get the authentication info. 124 * @return password authentication info or {@code null} if no authenticator 153 // Authenticator 158 * Sets {@code a} as the default authenticator. It will be called wheneve [all...] |
PasswordAuthentication.java | 22 * password which is used by the {@code Authenticator} class. 24 * @see Authenticator
|
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/ |
eap.h | 2 * hostapd / EAP Full Authenticator state machine (RFC 4137) 48 /* Lower layer to full authenticator variables */ 53 Boolean eapRestart; /* shared with EAPOL Authenticator PAE */ 57 /* Full authenticator to lower layer variables */ 68 /* AAA interface to full authenticator variables */ 79 /* Full authenticator to AAA interface variables */
|
/external/wpa_supplicant_8/src/eap_server/ |
eap.h | 2 * hostapd / EAP Full Authenticator state machine (RFC 4137) 48 /* Lower layer to full authenticator variables */ 53 Boolean eapRestart; /* shared with EAPOL Authenticator PAE */ 57 /* Full authenticator to lower layer variables */ 68 /* AAA interface to full authenticator variables */ 79 /* Full authenticator to AAA interface variables */
|
/external/wpa_supplicant_8/src/eapol_auth/ |
eapol_auth_sm_i.h | 2 * IEEE 802.1X-2004 Authenticator - EAPOL state machine (internal definitions) 31 * struct eapol_authenticator - Global EAPOL authenticator data 43 * struct eapol_state_machine - Per-Supplicant Authenticator state machines 70 /* Authenticator PAE state machine */ 120 /* Authenticator Key Transmit state machine */ 136 /* Authenticator Statistics Table */ 153 /* EAPOL/AAA <-> EAP full authenticator interface */
|
/frameworks/base/core/java/android/accounts/ |
AuthenticatorDescription.java | 23 * A {@link Parcelable} value type that contains information about an account authenticator. 26 /** The string that uniquely identifies an authenticator */ 29 /** A resource id of a label for the authenticator that is suitable for displaying */ 32 /** A resource id of a icon for the authenticator */ 35 /** A resource id of a smaller icon for the authenticator */ 47 /** Authenticator handles its own token caching and permission screen */ 71 * to identify the authenticator by its type.
|
IAccountAuthenticatorCache.java | 28 * An interface to the Authenticator specialization of RegisteredServicesCache. The use of 37 * @param type the authenticator type to return 56 * Sets a listener that will be notified whenever the authenticator set changes
|
AccountManagerFuture.java | 92 * the authenticator or if the authenticator returned an invalid response 93 * @throws java.io.IOException if the authenticator returned an error response that indicates 111 * the authenticator or if the authenticator returned an invalid response 112 * @throws java.io.IOException if the authenticator returned an error response that indicates
|
/external/wpa_supplicant_8/src/ap/ |
wpa_auth_glue.h | 2 * hostapd / WPA authenticator glue code
|
/packages/apps/Email/res/xml/ |
authenticator_alternate.xml | 23 <!-- The only difference from authenticator.xml is android:label. --> 25 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
|
/external/e2fsprogs/lib/et/test_cases/ |
simple.et | 13 "Can't decode authenticator"
|
/external/wpa_supplicant_6/wpa_supplicant/src/wps/ |
wps_attr_process.c | 22 int wps_process_authenticator(struct wps_data *wps, const u8 *authenticator, 29 if (authenticator == NULL) { 30 wpa_printf(MSG_DEBUG, "WPS: No Authenticator attribute " 37 "validating authenticator"); 41 /* Authenticator = HMAC-SHA256_AuthKey(M_prev || M_curr*) 42 * (M_curr* is M_curr without the Authenticator attribute) 50 if (os_memcmp(hash, authenticator, WPS_AUTHENTICATOR_LEN) != 0) { 51 wpa_printf(MSG_DEBUG, "WPS: Incorrect Authenticator");
|
/external/wpa_supplicant_8/src/wps/ |
wps_attr_process.c | 22 int wps_process_authenticator(struct wps_data *wps, const u8 *authenticator, 29 if (authenticator == NULL) { 30 wpa_printf(MSG_DEBUG, "WPS: No Authenticator attribute " 37 "validating authenticator"); 41 /* Authenticator = HMAC-SHA256_AuthKey(M_prev || M_curr*) 42 * (M_curr* is M_curr without the Authenticator attribute) 50 if (os_memcmp(hash, authenticator, WPS_AUTHENTICATOR_LEN) != 0) { 51 wpa_printf(MSG_DEBUG, "WPS: Incorrect Authenticator");
|
/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,
|