/external/wpa_supplicant_8/hostapd/ |
README | 2 Authenticator and RADIUS authentication server 72 server for MAC address based access control, IEEE 802.1X Authenticator 74 Authenticator and dynamic TKIP/CCMP keying. 130 IEEE 802.1X uses elements called Supplicant, Authenticator, Port 133 Server. An access point includes an Authenticator that relays the packets 135 Port Access Entity (PAE) with Authenticator functionality for 140 between a Supplicant and an Authenticator are sent using EAP over LAN 141 (EAPOL) and the Authenticator relays these frames to the Authentication 144 Authenticator, in which case there is no need for additional protocol 153 frames to be passed between the Supplicant and the Authenticator eve [all...] |
hostapd.8 | 3 hostapd \- IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator
|
wired.conf | 4 # Example configuration file for wired authenticator. See hostapd.conf for
|
/frameworks/base/core/java/android/accounts/ |
AbstractAccountAuthenticator.java | 33 * In order to be an authenticator one must extend this class, provider implementations for the 43 * android:resource="@xml/authenticator" /> 47 * <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android" 56 * attribute must be a string that uniquely identifies your authenticator and will be the same 63 * a list of PreferenceScreens that can be invoked to manage the authenticator. An example is: 82 * <li> If the supplied arguments are enough for the authenticator to fully satisfy the request 84 * <li> If the authenticator needs information from the user to satisfy the request then it 93 * <li> If the authenticator cannot synchronously process the request and return a result then it 98 * The following descriptions of each of the abstract authenticator methods will not describe the 343 * @param requiredFeatures a String array of authenticator-specific features that the adde [all...] |
AccountManager.java | 55 * authentication, so the account manager uses pluggable <em>authenticator</em> 59 * and Microsoft Exchange each have their own authenticator. 79 * identifies the authenticator. Account <em>features</em> are used to 81 * type and features are authenticator-specific strings, and must be known by 213 * Boolean, if set and 'customTokens' the authenticator is responsible for 223 public static final String AUTHENTICATOR_ATTRIBUTES_NAME = "account-authenticator"; 300 * and to have the same UID as the account's authenticator. 319 * and values is up to the authenticator for the account. 325 * and to have the same UID as the account's authenticator. 349 * authenticator known to the AccountManager service. Empty (neve [all...] |
/external/wpa_supplicant/ |
radius.c | 174 { RADIUS_ATTR_MESSAGE_AUTHENTICATOR, "Message-Authenticator", 301 "Message-Authenticator\n"); 331 printf("WARNING: Could not add Message-Authenticator\n"); 335 os_memcpy(msg->hdr->authenticator, req_authenticator, 336 sizeof(msg->hdr->authenticator)); 349 md5_vector(4, addr, len, msg->hdr->authenticator); 367 os_memset(msg->hdr->authenticator, 0, MD5_MAC_LEN); 372 md5_vector(2, addr, len, msg->hdr->authenticator); 592 printf("Multiple Message-Authenticator " 601 printf("No Message-Authenticator attribute found\n") [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/radius/ |
radius.c | 178 { RADIUS_ATTR_MESSAGE_AUTHENTICATOR, "Message-Authenticator", 309 "Message-Authenticator\n"); 339 printf("WARNING: Could not add Message-Authenticator\n"); 343 os_memcpy(msg->hdr->authenticator, req_authenticator, 344 sizeof(msg->hdr->authenticator)); 357 md5_vector(4, addr, len, msg->hdr->authenticator); 375 os_memset(msg->hdr->authenticator, 0, MD5_MAC_LEN); 380 md5_vector(2, addr, len, msg->hdr->authenticator); 597 printf("Multiple Message-Authenticator " 606 printf("No Message-Authenticator attribute found\n") [all...] |
/external/wpa_supplicant_8/src/radius/ |
radius.c | 223 { RADIUS_ATTR_MESSAGE_AUTHENTICATOR, "Message-Authenticator", 354 "Message-Authenticator"); 384 printf("WARNING: Could not add Message-Authenticator\n"); 388 os_memcpy(msg->hdr->authenticator, req_authenticator, 389 sizeof(msg->hdr->authenticator)); 402 md5_vector(4, addr, len, msg->hdr->authenticator); 420 os_memset(msg->hdr->authenticator, 0, MD5_MAC_LEN); 425 md5_vector(2, addr, len, msg->hdr->authenticator); 638 printf("Multiple Message-Authenticator " 647 printf("No Message-Authenticator attribute found\n") [all...] |
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/ |
Authenticator.java | 17 package com.example.android.samplesync.authenticator; 50 class Authenticator extends AbstractAccountAuthenticator { 53 private static final String TAG = "Authenticator"; 58 public Authenticator(Context context) { 137 // This call is used to query whether the Authenticator supports
|
/external/wpa_supplicant_6/wpa_supplicant/src/wps/ |
wps_attr_build.c | 111 "building authenticator"); 115 /* Authenticator = HMAC-SHA256_AuthKey(M_prev || M_curr*) 116 * (M_curr* is M_curr without the Authenticator attribute) 124 wpa_printf(MSG_DEBUG, "WPS: * Authenticator"); 217 wpa_printf(MSG_DEBUG, "WPS: * Key Wrap Authenticator");
|
/frameworks/base/obex/javax/obex/ |
SessionNotifier.java | 53 * the handler to handle the requests from the client. No authenticator is 92 * <code>Authenticator</code> to use to respond to authentication challenge 120 * @param auth the <code>Authenticator</code> to use with this connection; 121 * if <code>null</code> then no <code>Authenticator</code> will be 127 ObexSession acceptAndOpen(ServerRequestHandler handler, Authenticator auth) throws IOException;
|
/external/chromium/chrome/browser/ui/webui/options/chromeos/ |
accounts_options_handler.cc | 13 #include "chrome/browser/chromeos/login/authenticator.h" 85 users_settings()->WhitelistUser(Authenticator::Canonicalize(email)); 94 users_settings()->UnwhitelistUser(Authenticator::Canonicalize(email));
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
AccountPromptUtils.java | 107 Log.e(TAG, "Account setup error: No authenticator was registered for this" 108 + "account type or the authenticator failed to respond"); 110 Log.e(TAG, "Account setup error: Authenticator experienced an I/O problem");
|
/external/chromium/chrome/browser/chromeos/login/ |
screen_locker.h | 31 class Authenticator; 87 // Authenticates the user with given |password| and authenticator. 144 // Sets the authenticator. 145 void SetAuthenticator(Authenticator* authenticator); 203 scoped_refptr<Authenticator> authenticator_;
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/ |
HttpURLConnectionTest.java | 23 import java.net.Authenticator; 271 // Set up test Authenticator 272 Authenticator.setDefault(new Authenticator() { 300 // remove previously set authenticator 301 Authenticator.setDefault(null);
|
/development/samples/SampleSyncAdapter/ |
_index.html | 13 account manager to obtain an auth token for the account. An authenticator (a 17 authenticator for your service by extending the new <code><a
|
AndroidManifest.xml | 54 <!-- The authenticator service --> 56 android:name=".authenticator.AuthenticationService" 64 android:resource="@xml/authenticator" /> 90 android:name=".authenticator.AuthenticatorActivity"
|
/cts/tests/res/xml/ |
authenticator.xml | 23 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
|
/cts/tests/tests/accounts/res/xml/ |
authenticator.xml | 23 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
|
/development/samples/SampleSyncAdapter/res/xml/ |
authenticator.xml | 23 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
|
/external/e2fsprogs/lib/et/test_cases/ |
simple.c | 12 "Can't decode authenticator",
|
/external/wpa_supplicant_6/wpa_supplicant/tests/ |
link_test.c | 3 * functions should be removed to allow IEEE 802.1X/EAPOL authenticator to
|
/external/wpa_supplicant_8/src/ap/ |
preauth_auth.h | 2 * hostapd - Authenticator for IEEE 802.11i RSN pre-authentication
|
/external/wpa_supplicant_8/wpa_supplicant/tests/ |
link_test.c | 3 * functions should be removed to allow IEEE 802.1X/EAPOL authenticator to
|
/packages/apps/Email/res/xml/ |
eas_authenticator.xml | 23 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
|