/external/wpa_supplicant_8/src/eap_peer/ |
D | mschapv2.c | 41 u8 *nt_response, u8 *auth_response, in mschapv2_derive_response() argument 68 password, nt_response) || in mschapv2_derive_response() 71 username, username_len, nt_response, in mschapv2_derive_response() 80 nt_response) || in mschapv2_derive_response() 85 nt_response, in mschapv2_derive_response() 90 nt_response, MSCHAPV2_NT_RESPONSE_LEN); in mschapv2_derive_response() 103 if (get_master_key(password_hash_hash, nt_response, master_key)) in mschapv2_derive_response()
|
D | eap_mschapv2.c | 43 u8 nt_response[MSCHAPV2_NT_RESPONSE_LEN]; member 53 u8 nt_response[MSCHAPV2_NT_RESPONSE_LEN]; member 209 peer_challenge, r->nt_response, in eap_mschapv2_challenge_reply() 589 cp->nt_response); in eap_mschapv2_change_password() 591 cp->nt_response, MSCHAPV2_NT_RESPONSE_LEN); in eap_mschapv2_change_password() 599 cp->nt_response, data->auth_response); in eap_mschapv2_change_password() 606 get_master_key(password_hash_hash, cp->nt_response, in eap_mschapv2_change_password()
|
D | mschapv2.h | 23 u8 *nt_response, u8 *auth_response,
|
/external/wpa_supplicant_8/src/crypto/ |
D | ms_funcs.h | 25 const u8 *nt_response, u8 *response); 30 const u8 *nt_response, u8 *response); 39 int get_master_key(const u8 *password_hash_hash, const u8 *nt_response,
|
D | ms_funcs.c | 230 const u8 *nt_response, u8 *response) in generate_authenticator_response_pwhash() argument 253 addr1[1] = nt_response; in generate_authenticator_response_pwhash() 289 const u8 *nt_response, u8 *response) in generate_authenticator_response() argument 296 username, username_len, nt_response, response); in generate_authenticator_response() 326 int get_master_key(const u8 *password_hash_hash, const u8 *nt_response, in get_master_key() argument 339 addr[1] = nt_response; in get_master_key()
|
/external/ppp/pppd/plugins/ |
D | winbind.c | 258 const u_char *nt_response, in run_ntlm_auth() argument 381 sprintf(nt_hex_hash + i * 2, "%02X", nt_response[i]); in run_ntlm_auth() 556 u_char *nt_response = NULL; in winbind_chap_verify() local 568 nt_response = rmd->NTResp; in winbind_chap_verify() 591 nt_response, in winbind_chap_verify() 592 nt_response ? nt_response_size: 0, in winbind_chap_verify()
|
/external/wpa_supplicant_8/src/eap_server/ |
D | eap_server_ttls.c | 591 u8 *chal, nt_response[24]; in eap_ttls_process_phase2_mschap() local 632 challenge_response(challenge, sm->user->password, nt_response); in eap_ttls_process_phase2_mschap() 635 sm->user->password_len, nt_response); in eap_ttls_process_phase2_mschap() 637 if (os_memcmp_const(nt_response, response + 2 + 24, 24) == 0) { in eap_ttls_process_phase2_mschap() 645 nt_response, 24); in eap_ttls_process_phase2_mschap() 657 u8 *chal, *username, nt_response[24], *rx_resp, *peer_challenge, in eap_ttls_process_phase2_mschapv2() local 733 nt_response); in eap_ttls_process_phase2_mschapv2() 739 nt_response); in eap_ttls_process_phase2_mschapv2() 743 if (os_memcmp_const(nt_response, rx_resp, 24) == 0) { in eap_ttls_process_phase2_mschapv2() 752 username, username_len, nt_response, in eap_ttls_process_phase2_mschapv2() [all …]
|
D | eap_server_mschapv2.c | 286 const u8 *pos, *end, *peer_challenge, *nt_response, *name; in eap_mschapv2_process_response() local 316 nt_response = pos; in eap_mschapv2_process_response() 329 wpa_hexdump(MSG_MSGDUMP, "EAP-MSCHAPV2: NT-Response", nt_response, 24); in eap_mschapv2_process_response() 396 if (os_memcmp_const(nt_response, expected, 24) == 0) { in eap_mschapv2_process_response() 419 username, username_len, nt_response, in eap_mschapv2_process_response() 423 get_master_key(pw_hash_hash, nt_response, data->master_key); in eap_mschapv2_process_response()
|