Home
last modified time | relevance | path

Searched refs:WPA2_SECURITY (Results 1 – 3 of 3) sorted by relevance

/hal_infineon-3.4.0/wifi-host-driver/WiFi_Host_Driver/inc/
Dwhd_types.h47 #define WPA2_SECURITY 0x00400000 /**< Flag to enable WPA2 Security */ macro
209 …WHD_SECURITY_WPA2_AES_PSK = (WPA2_SECURITY | AES_ENABLED), …
210 …WHD_SECURITY_WPA2_TKIP_PSK = (WPA2_SECURITY | TKIP_ENABLED), …
211 …WHD_SECURITY_WPA2_MIXED_PSK = (WPA2_SECURITY | AES_ENABLED | TKIP_ENABLED), …
212 …WHD_SECURITY_WPA2_FBT_PSK = (WPA2_SECURITY | AES_ENABLED | FBT_ENABLED), …
214 …WHD_SECURITY_WPA2_WPA_AES_PSK = (WPA2_SECURITY | WPA_SECURITY | AES_ENABLED), …
215 …WHD_SECURITY_WPA2_WPA_MIXED_PSK = (WPA2_SECURITY | WPA_SECURITY | AES_ENABLED | TKIP_ENABLED), …
217 …WHD_SECURITY_WPA3_WPA2_PSK = (WPA3_SECURITY | WPA2_SECURITY | AES_ENABLED), …
222 …WHD_SECURITY_WPA2_TKIP_ENT = (ENTERPRISE_ENABLED | WPA2_SECURITY | TKIP_ENABLED), …
223 …WHD_SECURITY_WPA2_AES_ENT = (ENTERPRISE_ENABLED | WPA2_SECURITY | AES_ENABLED), …
[all …]
/hal_infineon-3.4.0/wifi-host-driver/WiFi_Host_Driver/src/
Dwhd_wifi_api.c547 ( (auth_type & WPA2_SECURITY) != 0 ) || in whd_wifi_enable_supplicant()
663 ( (auth_type & WPA2_SECURITY) != 0 ) || in whd_wifi_enable_sup_set_passphrase()
1229 …htod32( ( uint32_t )( ( ( (auth_type & WPA_SECURITY) != 0 ) || ( (auth_type & WPA2_SECURITY) != 0 … in whd_wifi_prepare_join()
1319 else if ( (auth_type == WHD_SECURITY_WPA3_WPA2_PSK) || (auth_type & WPA2_SECURITY) ) in whd_wifi_prepare_join()
2025 record->security |= WPA2_SECURITY; in whd_wifi_scan_events_handler()
2033 record->security |= WPA2_SECURITY; in whd_wifi_scan_events_handler()
2038 record->security |= WPA2_SECURITY; in whd_wifi_scan_events_handler()
2044 record->security |= WPA2_SECURITY; in whd_wifi_scan_events_handler()
2899 *security |= WPA2_SECURITY; in whd_wifi_get_ap_info()
Dwhd_utils.c789 if (security & WPA2_SECURITY) in whd_convert_security_type_to_string()