#define WIFI_SECURITY_WEP "wep"
#define WIFI_SECURITY_WPA_PSK "psk"
#define WIFI_SECURITY_EAP "ieee8021x"
+#define WIFI_SECURITY_SAE "sae"
#define WIFI_CONFIG_PREFIX "wifi_"
#define MAC_ADDRESS_LENGTH 12
*type = g_strdup(WIFI_SECURITY_WPA_PSK);
} else if (g_str_has_suffix(config_id, WIFI_SECURITY_EAP) == TRUE) {
*type = g_strdup(WIFI_SECURITY_EAP);
+ } else if (g_str_has_suffix(config_id, WIFI_SECURITY_SAE) == TRUE) {
+ *type = g_strdup(WIFI_SECURITY_SAE);
} else {
*type = NULL;
return FALSE;