/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);
|
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/ |
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...] |
/development/samples/SampleSyncAdapter/tests/src/com/example/android/samplesync/authenticator/ |
AuthenticatorActivityTest.java | 16 package com.example.android.samplesync.authenticator;
|
/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...] |
/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,
|
krb5_asn.c | 105 ASN1_EXP(KRB5_APREQBODY, authenticator, KRB5_ENCDATA, 4), 118 /* Authenticator stuff */
|
/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,
|
/external/webkit/Tools/QtTestBrowser/ |
webpage.cpp | 133 void WebPage::authenticationRequired(QNetworkReply* reply, QAuthenticator* authenticator) 168 authenticator->setUser(userInput->text()); 169 authenticator->setPassword(passInput->text());
|
/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");
|
wps_i.h | 125 const u8 *authenticator; /* WPS_AUTHENTICATOR_LEN (8) octets */ member in struct:wps_parse_attr 216 int wps_process_authenticator(struct wps_data *wps, const u8 *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");
|
wps_validate.c | 770 static int wps_validate_authenticator(const u8 *authenticator, int mandatory) 772 if (authenticator == NULL) { 774 wpa_printf(MSG_INFO, "WPS-STRICT: Authenticator " 935 "Authenticator attribute missing"); [all...] |
/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_;
|
/external/chromium/chrome/common/net/gaia/ |
gaia_authenticator.h | 72 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
|
/bionic/libc/kernel/common/linux/ |
wanrouter.h | 119 char authenticator; member in struct:wan_ppp_conf
|
/development/ndk/platforms/android-3/include/linux/ |
wanrouter.h | 119 char authenticator; member in struct:wan_ppp_conf
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
wanrouter.h | 29 * Added 'authenticator' to 'wan_ppp_conf_t' 174 char authenticator; /* AUTHENTICATOR or not */ member in struct:wan_ppp_conf
|
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/ |
wanrouter.h | 119 char authenticator; member in struct:wan_ppp_conf
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/ |
wanrouter.h | 119 char authenticator; member in struct:wan_ppp_conf
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/ |
wanrouter.h | 119 char authenticator; member in struct:wan_ppp_conf
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/ |
wanrouter.h | 119 char authenticator; member in struct:wan_ppp_conf
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/ |
wanrouter.h | 119 char authenticator; member in struct:wan_ppp_conf
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/ |
wanrouter.h | 119 char authenticator; member in struct:wan_ppp_conf
|