HomeSort by relevance Sort by last modified time
    Searched defs:auth_challenge (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/net/http/
http_auth_cache.h 49 const std::string auth_challenge() const { function in class:net::HttpAuthCache::Entry
62 void UpdateStaleChallenge(const std::string& auth_challenge);
150 const std::string& auth_challenge,
171 // |auth_challenge| and the nonce count is reset.
177 const std::string& auth_challenge);
http_auth_cache_unittest.cc 159 EXPECT_EQ("Basic realm=Realm3", entry->auth_challenge());
171 EXPECT_EQ("Digest realm=Realm3", entry->auth_challenge());
182 EXPECT_EQ("Basic realm=Realm2", entry->auth_challenge());
281 const std::string auth_challenge = "Basic realm=MyRealm"; local
287 origin, handler->realm(), handler->auth_scheme(), auth_challenge,
289 cache.Add(origin, handler->realm(), handler->auth_scheme(), auth_challenge,
291 cache.Add(origin, handler->realm(), handler->auth_scheme(), auth_challenge,
http_response_info.h 121 scoped_refptr<AuthChallengeInfo> auth_challenge; member in class:net::HttpResponseInfo
125 // because it is similar to |auth_challenge|, but unlike HTTP authentication
http_network_transaction_unittest.cc 597 bool CheckBasicServerAuth(const AuthChallengeInfo* auth_challenge) {
598 if (!auth_challenge)
600 EXPECT_FALSE(auth_challenge->is_proxy);
601 EXPECT_EQ("www.google.com:80", auth_challenge->challenger.ToString());
602 EXPECT_EQ("MyRealm1", auth_challenge->realm);
603 EXPECT_EQ("basic", auth_challenge->scheme);
607 bool CheckBasicProxyAuth(const AuthChallengeInfo* auth_challenge) {
608 if (!auth_challenge)
610 EXPECT_TRUE(auth_challenge->is_proxy);
611 EXPECT_EQ("myproxy:70", auth_challenge->challenger.ToString())
9667 std::string auth_challenge = "Mock realm=proxy"; local
9681 std::string auth_challenge = "Mock realm=server"; local
9778 std::string auth_challenge = "Mock realm=server"; local
    [all...]
  /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);
378 res = generate_nt_response_pwhash(data->auth_challenge,
384 res = generate_nt_response(data->auth_challenge,
418 pw_hash, peer_challenge, data->auth_challenge,
    [all...]
eap_server_ttls.c 658 *auth_challenge; local
719 auth_challenge = challenge;
724 wpa_hexdump(MSG_MSGDUMP, "EAP-TTLS/MSCHAPV2: auth_challenge",
725 auth_challenge, EAP_TTLS_MSCHAPV2_CHALLENGE_LEN);
730 generate_nt_response_pwhash(auth_challenge, peer_challenge,
735 generate_nt_response(auth_challenge, peer_challenge,
751 peer_challenge, auth_challenge,
757 peer_challenge, auth_challenge,
eap_i.h 164 u8 *auth_challenge; member in struct:eap_sm
  /external/wpa_supplicant_8/src/eap_peer/
eap_i.h 340 u8 *peer_challenge, *auth_challenge; member in struct:eap_sm
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/spdy/
spdy_network_transaction_unittest.cc 5028 AuthChallengeInfo* auth_challenge = response_start->auth_challenge.get(); local
    [all...]

Completed in 150 milliseconds