Home
last modified time | relevance | path

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

/hal_infineon-3.4.0/wifi-host-driver/WiFi_Host_Driver/inc/
Dwhd_types.h46 #define WPA_SECURITY 0x00200000 /**< Flag to enable WPA Security */ macro
206 …WHD_SECURITY_WPA_TKIP_PSK = (WPA_SECURITY | TKIP_ENABLED), …
207 …WHD_SECURITY_WPA_AES_PSK = (WPA_SECURITY | AES_ENABLED), …
208 …WHD_SECURITY_WPA_MIXED_PSK = (WPA_SECURITY | AES_ENABLED | TKIP_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), …
219 …WHD_SECURITY_WPA_TKIP_ENT = (ENTERPRISE_ENABLED | WPA_SECURITY | TKIP_ENABLED), …
220 …WHD_SECURITY_WPA_AES_ENT = (ENTERPRISE_ENABLED | WPA_SECURITY | AES_ENABLED), …
221 …WHD_SECURITY_WPA_MIXED_ENT = (ENTERPRISE_ENABLED | WPA_SECURITY | AES_ENABLED | TKIP_ENABLED), …
/hal_infineon-3.4.0/wifi-host-driver/WiFi_Host_Driver/src/
Dwhd_wifi_api.c546 data[1] = (uint32_t)( ( ( (auth_type & WPA_SECURITY) != 0 ) || in whd_wifi_enable_supplicant()
662 data[1] = (uint32_t)( ( ( (auth_type & WPA_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()
2084 record->security = (whd_security_t)WPA_SECURITY; in whd_wifi_scan_events_handler()
2903 *security |= WPA_SECURITY; in whd_wifi_get_ap_info()
Dwhd_utils.c793 if (security & WPA_SECURITY) in whd_convert_security_type_to_string()