tests: WPA2-Enterprise connection using EAP-pwd and NTHash
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
3e808b831c
commit
b898a6ee72
2 changed files with 13 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
||||||
"pwd user" PWD "secret password"
|
"pwd user" PWD "secret password"
|
||||||
|
"pwd-hash" PWD hash:e3718ece8ab74792cbbfffd316d2d19a
|
||||||
"pwd.user@test123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890.example.com" PWD "secret password"
|
"pwd.user@test123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890.example.com" PWD "secret password"
|
||||||
"gpsk user" GPSK "abcdefghijklmnop0123456789abcdef"
|
"gpsk user" GPSK "abcdefghijklmnop0123456789abcdef"
|
||||||
"sake user" SAKE 0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef
|
"sake user" SAKE 0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef
|
||||||
|
|
|
@ -1759,6 +1759,18 @@ def test_ap_wpa2_eap_pwd(dev, apdev):
|
||||||
password="secret password",
|
password="secret password",
|
||||||
fragment_size="31")
|
fragment_size="31")
|
||||||
|
|
||||||
|
def test_ap_wpa2_eap_pwd_nthash(dev, apdev):
|
||||||
|
"""WPA2-Enterprise connection using EAP-pwd and NTHash"""
|
||||||
|
check_eap_capa(dev[0], "PWD")
|
||||||
|
params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
|
||||||
|
hostapd.add_ap(apdev[0]['ifname'], params)
|
||||||
|
eap_connect(dev[0], apdev[0], "PWD", "pwd-hash", password="secret password")
|
||||||
|
eap_connect(dev[1], apdev[0], "PWD", "pwd-hash",
|
||||||
|
password_hex="hash:e3718ece8ab74792cbbfffd316d2d19a")
|
||||||
|
eap_connect(dev[2], apdev[0], "PWD", "pwd user",
|
||||||
|
password_hex="hash:e3718ece8ab74792cbbfffd316d2d19a",
|
||||||
|
expect_failure=True, local_error_report=True)
|
||||||
|
|
||||||
def test_ap_wpa2_eap_pwd_groups(dev, apdev):
|
def test_ap_wpa2_eap_pwd_groups(dev, apdev):
|
||||||
"""WPA2-Enterprise connection using various EAP-pwd groups"""
|
"""WPA2-Enterprise connection using various EAP-pwd groups"""
|
||||||
check_eap_capa(dev[0], "PWD")
|
check_eap_capa(dev[0], "PWD")
|
||||||
|
|
Loading…
Reference in a new issue