|
@@ -761,6 +761,23 @@ def test_sae_commit_override(dev, apdev):
|
|
|
if ev is not None:
|
|
|
raise Exception("Unexpected connection")
|
|
|
|
|
|
+@remote_compatible
|
|
|
+def test_sae_commit_override2(dev, apdev):
|
|
|
+ """SAE commit override (wpa_supplicant)"""
|
|
|
+ if "SAE" not in dev[0].get_capability("auth_alg"):
|
|
|
+ raise HwsimSkip("SAE not supported")
|
|
|
+ params = hostapd.wpa2_params(ssid="test-sae",
|
|
|
+ passphrase="12345678")
|
|
|
+ params['wpa_key_mgmt'] = 'SAE'
|
|
|
+ hapd = hostapd.add_ap(apdev[0], params)
|
|
|
+ dev[0].request("SET sae_groups ")
|
|
|
+ dev[0].set('sae_commit_override', '13ffbad00d215867a7c5ff37d87bb9bdb7cb116e520f71e8d7a794ca2606d537ddc6c099c40e7a25372b80a8fd443cd7dd222c8ea21b8ef372d4b3e316c26a73fd999cc79ad483eb826e7b3893ea332da68fa13224bcdeb4fb18b0584dd100a2c514')
|
|
|
+ dev[0].connect("test-sae", psk="test-sae", key_mgmt="SAE",
|
|
|
+ scan_freq="2412", wait_connect=False)
|
|
|
+ ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
|
|
|
+ if ev is not None:
|
|
|
+ raise Exception("Unexpected connection")
|
|
|
+
|
|
|
@remote_compatible
|
|
|
def test_sae_anti_clogging_proto(dev, apdev):
|
|
|
"""SAE anti clogging protocol testing"""
|