/hal_espressif-3.6.0/components/wpa_supplicant/test/ |
D | test_sae.c | 68 u8 addr2[ETH_ALEN] = {0x11, 0x22, 0x33, 0x44, 0x55, 0x66}; variable 77 … TEST_ASSERT(sae_prepare_commit(addr1, addr2, pwd, strlen((const char *)pwd), NULL, &sae) == 0); 102 u8 addr2[ETH_ALEN] = {0x11, 0x22, 0x33, 0x44, 0x55, 0x66}; variable 115 … TEST_ASSERT(sae_prepare_commit(addr1, addr2, pwd, strlen((const char *)pwd), NULL, &sae1) == 0); 118 … TEST_ASSERT(sae_prepare_commit(addr2, addr1, pwd, strlen((const char *)pwd), NULL, &sae2) == 0); 189 u8 addr2[ETH_ALEN] = {0x11, 0x22, 0x33, 0x44, 0x55, 0x66}; variable 203 … TEST_ASSERT(sae_prepare_commit(addr1, addr2, pwd1, strlen((const char *)pwd1), NULL, &sae1) == 0); 206 … TEST_ASSERT(sae_prepare_commit(addr2, addr1, pwd2, strlen((const char *)pwd2), NULL, &sae2) == 0);
|
D | test_offchannel.c | 204 ESP_LOGI(TAG, "Rxd Action Frame from " MACSTR " (Seq-%lu)", MAC2STR(rx_hdr->addr2), in test_rx_action()
|
/hal_espressif-3.6.0/components/wpa_supplicant/src/crypto/ |
D | ms_funcs.c | 250 const unsigned char *addr2[3]; in generate_authenticator_response_pwhash() local 257 addr2[0] = response; in generate_authenticator_response_pwhash() 258 addr2[1] = challenge; in generate_authenticator_response_pwhash() 259 addr2[2] = magic2; in generate_authenticator_response_pwhash() 266 return sha1_vector(3, addr2, len2, response); in generate_authenticator_response_pwhash()
|
D | ccmp.c | 71 os_memcpy(nonce + 1, hdr->addr2, ETH_ALEN); in ccmp_aad_nonce()
|
/hal_espressif-3.6.0/components/wpa_supplicant/src/common/ |
D | sae.c | 163 static void sae_pwd_seed_key(const u8 *addr1, const u8 *addr2, u8 *key) in sae_pwd_seed_key() argument 166 " addr2=" MACSTR, MAC2STR(addr1), MAC2STR(addr2)); in sae_pwd_seed_key() 167 if (os_memcmp(addr1, addr2, ETH_ALEN) > 0) { in sae_pwd_seed_key() 169 os_memcpy(key + ETH_ALEN, addr2, ETH_ALEN); in sae_pwd_seed_key() 171 os_memcpy(key, addr2, ETH_ALEN); in sae_pwd_seed_key() 418 const u8 *addr2, const u8 *password, in sae_derive_pwe_ecc() argument 467 sae_pwd_seed_key(addr1, addr2, addrs); in sae_derive_pwe_ecc() 555 const u8 *addr2, const u8 *password, in sae_derive_pwe_ffc() argument 579 sae_pwd_seed_key(addr1, addr2, addrs); in sae_derive_pwe_ffc() 714 int sae_prepare_commit(const u8 *addr1, const u8 *addr2, in sae_prepare_commit() argument [all …]
|
D | wpa_common.c | 655 const u8 *addr1, const u8 *addr2, in wpa_pmk_to_ptk() argument 663 if (memcmp(addr1, addr2, ETH_ALEN) < 0) { in wpa_pmk_to_ptk() 665 memcpy(data + ETH_ALEN, addr2, ETH_ALEN); in wpa_pmk_to_ptk() 667 memcpy(data, addr2, ETH_ALEN); in wpa_pmk_to_ptk() 701 MAC2STR(addr1), MAC2STR(addr2)); in wpa_pmk_to_ptk()
|
D | sae.h | 75 int sae_prepare_commit(const u8 *addr1, const u8 *addr2,
|
D | ieee802_11_defs.h | 296 u8 addr2[6]; member 304 #define IEEE80211_BSSID_FROMDS addr2
|
D | wpa_common.h | 387 const u8 *addr1, const u8 *addr2,
|
/hal_espressif-3.6.0/components/wpa_supplicant/esp_supplicant/src/ |
D | esp_dpp.c | 409 os_memcpy(rx_param->sa, rx_hdr->addr2, ETH_ALEN); in esp_supp_rx_action()
|