Searched refs:igtk (Results 1 – 12 of 12) sorted by relevance
/hal_espressif-latest/components/wpa_supplicant/src/rsn_supp/ |
D | wpa.c | 1025 const wifi_wpa_igtk_t *igtk) in wpa_supplicant_install_igtk() argument 1028 u16 keyidx = WPA_GET_LE16(igtk->keyid); in wpa_supplicant_install_igtk() 1031 if (sm->igtk.igtk_len == len && in wpa_supplicant_install_igtk() 1032 os_memcmp(sm->igtk.igtk, igtk->igtk, sm->igtk.igtk_len) == 0) { in wpa_supplicant_install_igtk() 1041 keyidx, MAC2STR(igtk->pn)); in wpa_supplicant_install_igtk() 1042 wpa_hexdump_key(MSG_DEBUG, "WPA: IGTK", igtk->igtk, len); in wpa_supplicant_install_igtk() 1044 if (esp_wifi_set_igtk_internal(WIFI_IF_STA, igtk) < 0) { in wpa_supplicant_install_igtk() 1054 sm->igtk.igtk_len = len; in wpa_supplicant_install_igtk() 1055 os_memcpy(sm->igtk.igtk, igtk->igtk, sm->igtk.igtk_len); in wpa_supplicant_install_igtk() 1112 if (ie->igtk) { in ieee80211w_set_keys() [all …]
|
D | wpa_ie.h | 29 const u8 *igtk; member
|
D | wpa_ft.c | 662 u8 igtk[WPA_IGTK_LEN]; local 687 igtk_elem + 9, igtk)) { 695 wpa_hexdump_key(MSG_DEBUG, "FT: IGTK from Reassoc Resp", igtk, 698 if (esp_wifi_set_igtk_internal(WIFI_IF_STA, (wifi_wpa_igtk_t *)igtk) < 0) { 702 (u8 *)(igtk_elem + 2), 6, igtk, WPA_IGTK_LEN, sm->key_entry_valid) < 0) { 841 if (wpa_ft_process_igtk_subelem(sm, parse.igtk, parse.igtk_len) < 0)
|
D | wpa_i.h | 41 struct wpa_igtk igtk; member
|
D | wpa_ie.c | 378 ie->igtk = pos + 2 + RSN_SELECTOR_LEN; in wpa_parse_generic()
|
/hal_espressif-latest/components/wpa_supplicant/src/ap/ |
D | wpa_auth.c | 167 wifi_wpa_igtk_t *igtk = os_malloc(sizeof(wifi_wpa_igtk_t)); in wpa_auth_set_key() local 169 if (igtk != NULL) { in wpa_auth_set_key() 170 memcpy(&igtk->igtk[0], key, WPA_IGTK_LEN); in wpa_auth_set_key() 171 memset((uint8_t*)&igtk->pn[0],0,6); in wpa_auth_set_key() 172 igtk->keyid[0] = idx; in wpa_auth_set_key() 173 igtk->keyid[1] = 0; in wpa_auth_set_key() 178 ret = esp_wifi_set_igtk_internal(ESP_IF_WIFI_AP, igtk); in wpa_auth_set_key() 179 os_free(igtk); in wpa_auth_set_key() 1759 struct wpa_igtk_kde igtk; in ieee80211w_kde_add() local 1765 igtk.keyid[0] = gsm->GN_igtk; in ieee80211w_kde_add() [all …]
|
D | wpa_auth_ie.h | 23 const u8 *igtk; member
|
D | wpa_auth_ie.c | 704 ie->igtk = pos + 2 + RSN_SELECTOR_LEN; in wpa_parse_generic()
|
/hal_espressif-latest/components/wpa_supplicant/src/common/ |
D | wpa_common.h | 217 u8 igtk[WPA_IGTK_MAX_LEN]; member 291 u8 igtk[WPA_IGTK_LEN]; member 423 const u8 *igtk; member
|
D | wpa_common.c | 125 parse->igtk = pos + 2; in wpa_ft_parse_ftie()
|
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/ |
D | esp_wifi_driver.h | 193 uint8_t igtk[WPA_IGTK_MAX_LEN]; member 276 int esp_wifi_set_igtk_internal(uint8_t if_index, const wifi_wpa_igtk_t *igtk);
|
/hal_espressif-latest/zephyr/port/wifi/ |
D | wifi_stubs.c | 345 int esp_wifi_set_igtk_internal(uint8_t if_index, const wifi_wpa_igtk_t *igtk) in esp_wifi_set_igtk_internal() argument 348 ARG_UNUSED(igtk); in esp_wifi_set_igtk_internal()
|