Home
last modified time | relevance | path

Searched refs:nt_response (Results 1 – 9 of 9) sorted by relevance

/NextBSD/contrib/wpa/src/eap_peer/
HDmschapv2.c41 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()
HDeap_mschapv2.c43 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()
601 cp->nt_response); in eap_mschapv2_change_password()
603 cp->nt_response, MSCHAPV2_NT_RESPONSE_LEN); in eap_mschapv2_change_password()
611 cp->nt_response, data->auth_response); in eap_mschapv2_change_password()
618 get_master_key(password_hash_hash, cp->nt_response, in eap_mschapv2_change_password()
HDmschapv2.h23 u8 *nt_response, u8 *auth_response,
/NextBSD/contrib/wpa/src/crypto/
HDms_funcs.c228 const u8 *nt_response, u8 *response) in generate_authenticator_response_pwhash() argument
251 addr1[1] = nt_response; in generate_authenticator_response_pwhash()
284 const u8 *nt_response, u8 *response) in generate_authenticator_response() argument
291 username, username_len, nt_response, response); in generate_authenticator_response()
321 int get_master_key(const u8 *password_hash_hash, const u8 *nt_response, in get_master_key() argument
334 addr[1] = nt_response; in get_master_key()
HDms_funcs.h25 const u8 *nt_response, u8 *response);
30 const u8 *nt_response, u8 *response);
41 int get_master_key(const u8 *password_hash_hash, const u8 *nt_response,
HDcrypto_module_tests.c1600 u8 nt_response[] = { in test_ms_funcs() local
1634 os_memcmp(nt_response, buf, sizeof(nt_response)) != 0) { in test_ms_funcs()
1651 nt_response, buf) || in test_ms_funcs()
1658 if (get_master_key(password_hash_hash, nt_response, buf) || in test_ms_funcs()
/NextBSD/contrib/wpa/src/eap_server/
HDeap_server_mschapv2.c286 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()
371 challenge, nt_response); in eap_mschapv2_process_response()
409 if (os_memcmp_const(nt_response, expected, 24) == 0) { in eap_mschapv2_process_response()
432 username, username_len, nt_response, in eap_mschapv2_process_response()
435 get_master_key(pw_hash_hash, nt_response, in eap_mschapv2_process_response()
HDeap_server_ttls.c623 u8 *chal, nt_response[24]; in eap_ttls_process_phase2_mschap() local
670 challenge_response(challenge, sm->user->password, nt_response); in eap_ttls_process_phase2_mschap()
673 sm->user->password_len, nt_response); in eap_ttls_process_phase2_mschap()
675 if (os_memcmp_const(nt_response, response + 2 + 24, 24) == 0) { in eap_ttls_process_phase2_mschap()
684 nt_response, 24); in eap_ttls_process_phase2_mschap()
696 u8 *chal, *username, nt_response[24], *rx_resp, *peer_challenge, in eap_ttls_process_phase2_mschapv2() local
772 nt_response); in eap_ttls_process_phase2_mschapv2()
778 nt_response); in eap_ttls_process_phase2_mschapv2()
794 if (os_memcmp_const(nt_response, rx_resp, 24) == 0) { in eap_ttls_process_phase2_mschapv2()
803 username, username_len, nt_response, in eap_ttls_process_phase2_mschapv2()
[all …]
/NextBSD/usr.sbin/ppp/
HDradius.c105 u_char nt_response[24]; member
985 memcpy(msresp.nt_response, key + 25, 24); in radius_Authenticate()