Searched refs:password_hash (Results 1 – 7 of 7) sorted by relevance
/hal_espressif-latest/components/wpa_supplicant/src/crypto/ |
D | ms_funcs.c | 110 u8 *password_hash) in nt_password_hash() argument 121 return md4_vector(1, (const u8 **) &pos, &len, password_hash); in nt_password_hash() 131 int hash_nt_password_hash(const u8 *password_hash, u8 *password_hash_hash) in hash_nt_password_hash() argument 134 return md4_vector(1, &password_hash, &len, password_hash_hash); in hash_nt_password_hash() 145 int challenge_response(const u8 *challenge, const u8 *password_hash, in challenge_response() argument 150 if (des_encrypt(challenge, password_hash, response) < 0 || in challenge_response() 151 des_encrypt(challenge, password_hash + 7, response + 8) < 0) in challenge_response() 153 zpwd[0] = password_hash[14]; in challenge_response() 154 zpwd[1] = password_hash[15]; in challenge_response() 177 u8 password_hash[16]; in generate_nt_response() local [all …]
|
D | ms_funcs.h | 19 const u8 *password_hash, 27 const u8 *password_hash, 34 int challenge_response(const u8 *challenge, const u8 *password_hash, 39 u8 *password_hash); 40 int hash_nt_password_hash(const u8 *password_hash, u8 *password_hash_hash); 48 const u8 *password_hash, u8 *pw_block); 53 int nt_password_hash_encrypted_with_block(const u8 *password_hash,
|
/hal_espressif-latest/components/wpa_supplicant/src/eap_peer/ |
D | mschapv2.c | 43 u8 password_hash[16], password_hash_hash[16]; in mschapv2_derive_response() local 96 if (nt_password_hash(password, password_len, password_hash) || in mschapv2_derive_response() 97 hash_nt_password_hash(password_hash, password_hash_hash)) in mschapv2_derive_response()
|
D | eap_mschapv2.c | 481 u8 password_hash[16], password_hash_hash[16]; in eap_mschapv2_change_password() local 572 if (nt_password_hash(new_password, new_password_len, password_hash) || in eap_mschapv2_change_password() 573 hash_nt_password_hash(password_hash, password_hash_hash) || in eap_mschapv2_change_password()
|
/hal_espressif-latest/components/wpa_supplicant/src/eap_server/ |
D | eap.h | 32 int password_hash; /* whether password is hashed with member
|
/hal_espressif-latest/components/wpa_supplicant/src/ap/ |
D | ieee802_1x.c | 372 user->password_hash = eap_user->password_hash; in ieee802_1x_get_eap_user()
|
D | ap_config.h | 122 unsigned int password_hash:1; /* whether password is hashed with member
|