HomeSort by relevance Sort by last modified time
    Searched refs:auth_challenge (Results 1 - 25 of 35) sorted by null

1 2

  /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...]
eap_i.h 340 u8 *peer_challenge, *auth_challenge; member in struct:eap_sm
  /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_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_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_response_info.cc 77 auth_challenge(rhs.auth_challenge),
96 auth_challenge = rhs.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_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_proxy_client_socket.cc 266 response_.auth_challenge = auth_->auth_info();
http_network_transaction.cc 432 response_.auth_challenge = proxy_response.auth_challenge;
    [all...]
  /external/chromium_org/net/http/
http_auth_cache.h 74 const std::string& auth_challenge,
92 // |auth_challenge| and the nonce count is reset.
98 const std::string& auth_challenge);
128 const std::string auth_challenge() const { function in class:net::HttpAuthCache::Entry
141 void UpdateStaleChallenge(const std::string& auth_challenge);
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_response_info.cc 118 auth_challenge(rhs.auth_challenge),
142 auth_challenge = rhs.auth_challenge;
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
proxy_client_socket.cc 51 response->auth_challenge = auth->auth_info();
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 517 bool CheckBasicServerAuth(const AuthChallengeInfo* auth_challenge) {
518 if (!auth_challenge)
520 EXPECT_FALSE(auth_challenge->is_proxy);
521 EXPECT_EQ("www.google.com:80", auth_challenge->challenger.ToString());
522 EXPECT_EQ("MyRealm1", auth_challenge->realm);
523 EXPECT_EQ("basic", auth_challenge->scheme);
527 bool CheckBasicProxyAuth(const AuthChallengeInfo* auth_challenge) {
528 if (!auth_challenge)
530 EXPECT_TRUE(auth_challenge->is_proxy);
531 EXPECT_EQ("myproxy:70", auth_challenge->challenger.ToString())
9171 std::string auth_challenge = "Mock realm=proxy"; local
9185 std::string auth_challenge = "Mock realm=server"; local
9283 std::string auth_challenge = "Mock realm=server"; local
    [all...]
  /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_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_i.h 164 u8 *auth_challenge; member in struct:eap_sm
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,
  /external/chromium_org/net/url_request/
url_request_ftp_job.cc 303 *result = http_response_info_->auth_challenge;

Completed in 619 milliseconds

1 2