/external/wpa_supplicant_8/src/crypto/ |
ms_funcs.h | 12 int generate_nt_response(const u8 *auth_challenge, const u8 *peer_challenge, 16 int generate_nt_response_pwhash(const u8 *auth_challenge, 23 const u8 *auth_challenge, 28 const u8 *peer_challenge, const u8 *auth_challenge,
|
ms_funcs.c | 74 * @auth_challenge: 16-octet AuthenticatorChallenge (IN) 80 static int challenge_hash(const u8 *peer_challenge, const u8 *auth_challenge, 90 addr[1] = auth_challenge; 159 * @auth_challenge: 16-octet AuthenticatorChallenge (IN) 168 int generate_nt_response(const u8 *auth_challenge, const u8 *peer_challenge, 176 if (challenge_hash(peer_challenge, auth_challenge, username, 188 * @auth_challenge: 16-octet AuthenticatorChallenge (IN) 196 int generate_nt_response_pwhash(const u8 *auth_challenge, 204 if (challenge_hash(peer_challenge, auth_challenge, 218 * @auth_challenge: 16-octet AuthenticatorChallenge (IN [all...] |
/external/wpa_supplicant_8/src/eap_peer/ |
mschapv2.c | 39 const u8 *auth_challenge, 55 wpa_hexdump(MSG_DEBUG, "MSCHAPV2: auth_challenge", 56 auth_challenge, MSCHAPV2_CHAL_LEN); 66 if (generate_nt_response_pwhash(auth_challenge, peer_challenge, 70 password, peer_challenge, auth_challenge, 77 if (generate_nt_response(auth_challenge, peer_challenge, 83 auth_challenge,
|
mschapv2.h | 21 const u8 *auth_challenge,
|
eap_mschapv2.c | 90 u8 *auth_challenge; member in struct:eap_mschapv2_data 121 if (sm->auth_challenge) { 122 data->auth_challenge = os_malloc(MSCHAPV2_CHAL_LEN); 123 if (data->auth_challenge == NULL) { 127 os_memcpy(data->auth_challenge, sm->auth_challenge, 141 os_free(data->auth_challenge); 149 u8 mschapv2_id, const u8 *auth_challenge) 202 if (data->auth_challenge) { 203 wpa_printf(MSG_DEBUG, "EAP-MSCHAPV2: auth_challenge generated [all...] |
/external/chromium_org/net/http/ |
http_auth_cache.cc | 116 const std::string& auth_challenge, 141 entry->auth_challenge_ = auth_challenge; 153 const std::string& auth_challenge) { 154 auth_challenge_ = auth_challenge; 219 const std::string& auth_challenge) { 223 entry->UpdateStaleChallenge(auth_challenge); 233 it->auth_challenge(), it->credentials(),
|
http_auth_cache.h | 48 const std::string auth_challenge() const { function in class:net::HttpAuthCache::Entry 61 void UpdateStaleChallenge(const std::string& auth_challenge); 144 const std::string& auth_challenge, 162 // |auth_challenge| and the nonce count is reset. 168 const std::string& auth_challenge);
|
http_response_info.cc | 122 auth_challenge(rhs.auth_challenge), 146 auth_challenge = rhs.auth_challenge;
|
proxy_client_socket.cc | 51 response->auth_challenge = auth->auth_info();
|
http_response_info.h | 118 scoped_refptr<AuthChallengeInfo> auth_challenge; member in class:net::HttpResponseInfo 122 // because it is similar to |auth_challenge|, but unlike HTTP authentication
|
http_auth_cache_unittest.cc | 157 EXPECT_EQ("Basic realm=Realm3", entry->auth_challenge()); 169 EXPECT_EQ("Digest realm=Realm3", entry->auth_challenge()); 180 EXPECT_EQ("Basic realm=Realm2", entry->auth_challenge()); 279 const std::string auth_challenge = "Basic realm=MyRealm"; local 285 origin, handler->realm(), handler->auth_scheme(), auth_challenge, 287 cache.Add(origin, handler->realm(), handler->auth_scheme(), auth_challenge, 289 cache.Add(origin, handler->realm(), handler->auth_scheme(), auth_challenge,
|
http_network_transaction_unittest.cc | 528 bool CheckBasicServerAuth(const AuthChallengeInfo* auth_challenge) { 529 if (!auth_challenge) 531 EXPECT_FALSE(auth_challenge->is_proxy); 532 EXPECT_EQ("www.google.com:80", auth_challenge->challenger.ToString()); 533 EXPECT_EQ("MyRealm1", auth_challenge->realm); 534 EXPECT_EQ("basic", auth_challenge->scheme); 538 bool CheckBasicProxyAuth(const AuthChallengeInfo* auth_challenge) { 539 if (!auth_challenge) 541 EXPECT_TRUE(auth_challenge->is_proxy); 542 EXPECT_EQ("myproxy:70", auth_challenge->challenger.ToString()) 9231 std::string auth_challenge = "Mock realm=proxy"; local 9245 std::string auth_challenge = "Mock realm=server"; local 9342 std::string auth_challenge = "Mock realm=server"; local [all...] |
http_auth_controller.cc | 220 CreatePreemptiveAuthHandlerFromString(entry->auth_challenge(), target_, 507 // Populates response_.auth_challenge with the authentication challenge info.
|
/external/chromium/net/http/ |
http_auth_cache.h | 76 const std::string& auth_challenge, 97 // |auth_challenge| and the nonce count is reset. 103 const std::string& auth_challenge); 130 const std::string auth_challenge() const { function in class:net::HttpAuthCache::Entry 148 void UpdateStaleChallenge(const std::string& auth_challenge);
|
http_auth_cache.cc | 114 const std::string& auth_challenge, 140 entry->auth_challenge_ = auth_challenge; 153 const std::string& auth_challenge) { 154 auth_challenge_ = auth_challenge; 220 const std::string& auth_challenge) { 224 entry->UpdateStaleChallenge(auth_challenge);
|
http_network_transaction_unittest.cc | 7413 std::string auth_challenge = "Mock realm=proxy"; local 7426 std::string auth_challenge = "Mock realm=server"; local 7523 std::string auth_challenge = "Mock realm=server"; local [all...] |
http_response_info.h | 80 scoped_refptr<AuthChallengeInfo> auth_challenge; member in class:net::HttpResponseInfo 84 // because it is similar to |auth_challenge|, but unlike HTTP authentication
|
http_response_info.cc | 77 auth_challenge(rhs.auth_challenge), 96 auth_challenge = rhs.auth_challenge;
|
http_auth_cache_unittest.cc | 146 EXPECT_EQ("Basic realm=Realm3", entry->auth_challenge()); 157 EXPECT_EQ("Digest realm=Realm3", entry->auth_challenge()); 166 EXPECT_EQ("Basic realm=Realm2", entry->auth_challenge()); 265 const std::string auth_challenge = "Basic realm=MyRealm"; local 271 origin, handler->realm(), handler->auth_scheme(), auth_challenge, 273 cache.Add(origin, handler->realm(), handler->auth_scheme(), auth_challenge, 275 cache.Add(origin, handler->realm(), handler->auth_scheme(), auth_challenge,
|
http_auth_controller.cc | 226 CreatePreemptiveAuthHandlerFromString(entry->auth_challenge(), target_, 492 // Populates response_.auth_challenge with the authentication challenge info.
|
http_network_transaction.h | 205 // May update |pending_auth_target_| or |response_.auth_challenge|.
|
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_mschapv2.c | 47 u8 auth_challenge[CHALLENGE_LEN]; member in struct:eap_mschapv2_data 67 if (sm->auth_challenge) { 68 os_memcpy(data->auth_challenge, sm->auth_challenge, 106 random_get_bytes(data->auth_challenge, CHALLENGE_LEN)) { 130 wpabuf_put_data(req, data->auth_challenge, CHALLENGE_LEN); 134 data->auth_challenge, CHALLENGE_LEN); 370 res = generate_nt_response_pwhash(data->auth_challenge, 376 res = generate_nt_response(data->auth_challenge, 410 pw_hash, peer_challenge, data->auth_challenge, [all...] |
eap_server_ttls.c | 655 *auth_challenge; local 715 auth_challenge = challenge; 720 wpa_hexdump(MSG_MSGDUMP, "EAP-TTLS/MSCHAPV2: auth_challenge", 721 auth_challenge, EAP_TTLS_MSCHAPV2_CHALLENGE_LEN); 726 generate_nt_response_pwhash(auth_challenge, peer_challenge, 731 generate_nt_response(auth_challenge, peer_challenge, 747 peer_challenge, auth_challenge, 753 peer_challenge, auth_challenge,
|
eap_i.h | 164 u8 *auth_challenge; member in struct:eap_sm
|
/external/chromium/net/socket/ |
client_socket_handle.h | 121 // On an ERR_PROXY_AUTH_REQUESTED error, the |headers| and |auth_challenge|
|