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

  /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
eap_fast.c 339 sm->auth_challenge = data->key_block_p->server_challenge;
345 sm->auth_challenge = NULL;
    [all...]
  /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...]
http_auth_controller.cc 226 CreatePreemptiveAuthHandlerFromString(entry->auth_challenge(), target_,
492 // Populates response_.auth_challenge with the authentication challenge info.
  /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,
107 random_get_bytes(data->auth_challenge, CHALLENGE_LEN)) {
131 wpabuf_put_data(req, data->auth_challenge, CHALLENGE_LEN);
135 data->auth_challenge, CHALLENGE_LEN);
371 res = generate_nt_response_pwhash(data->auth_challenge,
377 res = generate_nt_response(data->auth_challenge,
411 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,
eap_server_fast.c 951 sm->auth_challenge = data->key_block_p->server_challenge;
957 sm->auth_challenge = NULL;
    [all...]
  /external/chromium/net/url_request/
url_request_http_job.cc 278 DCHECK(!response_info_->auth_challenge.get());
944 *result = response_info_->auth_challenge;
    [all...]
  /external/chromium/net/socket_stream/
socket_stream.cc 605 entry->auth_challenge(), HttpAuth::AUTH_PROXY,
    [all...]
  /external/chromium/net/spdy/
spdy_network_transaction_unittest.cc     [all...]

Completed in 5720 milliseconds