Searched refs:auth_response (Results 1 – 5 of 5) sorted by relevance
/hal_espressif-3.6.0/components/wpa_supplicant/src/eap_peer/ |
D | mschapv2.c | 38 u8 *nt_response, u8 *auth_response, in mschapv2_derive_response() argument 69 auth_response)) in mschapv2_derive_response() 83 auth_response)) in mschapv2_derive_response() 89 auth_response, MSCHAPV2_AUTH_RESPONSE_LEN); in mschapv2_derive_response() 109 int mschapv2_verify_auth_response(const u8 *auth_response, in mschapv2_verify_auth_response() argument 117 os_memcmp(auth_response, recv_response, in mschapv2_verify_auth_response()
|
D | mschapv2.h | 20 u8 *nt_response, u8 *auth_response, 22 int mschapv2_verify_auth_response(const u8 *auth_response,
|
D | eap_mschapv2.c | 65 u8 auth_response[MSCHAPV2_AUTH_RESPONSE_LEN]; member 194 data->auth_response, data->master_key)) { in eap_mschapv2_challenge_reply() 326 mschapv2_verify_auth_response(data->auth_response, pos, len)) { in eap_mschapv2_success() 569 cp->nt_response, data->auth_response); in eap_mschapv2_change_password()
|
D | eap_ttls.c | 51 u8 auth_response[MSCHAPV2_AUTH_RESPONSE_LEN]; member 479 peer_challenge, pos, data->auth_response, in eap_ttls_phase2_request_mschapv2() 1102 mschapv2_verify_auth_response(data->auth_response, in eap_ttls_process_phase2_mschapv2()
|
/hal_espressif-3.6.0/components/esp_http_client/ |
D | esp_http_client.c | 525 char *auth_response = NULL; in esp_http_client_prepare() local 528 …auth_response = http_auth_basic(client->connection_info.username, client->connection_info.password… in esp_http_client_prepare() 533 …auth_response = http_auth_digest(client->connection_info.username, client->connection_info.passwor… in esp_http_client_prepare() 538 if (auth_response) { in esp_http_client_prepare() 539 ESP_LOGD(TAG, "auth_response=%s", auth_response); in esp_http_client_prepare() 540 esp_http_client_set_header(client, "Authorization", auth_response); in esp_http_client_prepare() 541 free(auth_response); in esp_http_client_prepare()
|