Added OWE-Transition support

Signed-off-by: jitendra-kushavah <jitendra.kushavah@candelatech.com>
This commit is contained in:
jitendra-kushavah
2025-10-14 02:13:33 +00:00
parent 4ebf5c0d83
commit 288632efe2
2 changed files with 5 additions and 3 deletions

View File

@@ -65,7 +65,8 @@ class tip_2x:
"wpa_wpa2_enterprise_mixed",
"wpa3_enterprise_mixed",
"wpa3_enterprise_192",
"owe"
"owe",
"owe_transition"
]
tip_2x_specific_encryption_translation = {"open": "none",
"wpa": "psk",
@@ -79,7 +80,8 @@ class tip_2x:
"wpa_wpa2_enterprise_mixed": "wpa-mixed",
"wpa3_enterprise_mixed": "wpa3-mixed",
"wpa3_enterprise_192": "wpa3-192",
"owe":"owe"
"owe":"owe",
"owe_transition":"owe-transition"
}
def __init__(self, controller_data=None, target=None, configuration=None,

View File

@@ -252,7 +252,7 @@ def get_security_flags():
security = ["open", "wpa", "wep", "wpa2_personal", "wpa3_personal", "wpa3_personal_mixed",
"wpa_wpa2_enterprise_mixed", "wpa2_eap", "wpa2_only_eap",
"wpa_wpa2_personal_mixed", "wpa_enterprise", "wpa2_enterprise", "wpa3_enterprise_mixed",
"wpa3_enterprise", "twog", "fiveg", "sixg", "fiveg_lower", "fiveg_upper", "radius", "owe"]
"wpa3_enterprise", "twog", "fiveg", "sixg", "fiveg_lower", "fiveg_upper", "radius", "owe", "owe_transition"]
yield security