tests: Authentication server using PKCS#12 file
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
2a6a2192b7
commit
c37b02fcc4
2 changed files with 11 additions and 0 deletions
BIN
tests/hwsim/auth_serv/server.pkcs12
Normal file
BIN
tests/hwsim/auth_serv/server.pkcs12
Normal file
Binary file not shown.
|
@ -1064,6 +1064,17 @@ def test_ap_wpa2_eap_ttls_server_cert_eku_client_server(dev, apdev):
|
||||||
ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
|
ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
|
||||||
scan_freq="2412")
|
scan_freq="2412")
|
||||||
|
|
||||||
|
def test_ap_wpa2_eap_ttls_server_pkcs12(dev, apdev):
|
||||||
|
"""WPA2-Enterprise using EAP-TTLS and server PKCS#12 file"""
|
||||||
|
params = int_eap_server_params()
|
||||||
|
del params["server_cert"]
|
||||||
|
params["private_key"] = "auth_serv/server.pkcs12"
|
||||||
|
hostapd.add_ap(apdev[0]['ifname'], params)
|
||||||
|
dev[0].connect("test-wpa2-eap", key_mgmt="WPA-EAP", eap="TTLS",
|
||||||
|
identity="mschap user", password="password",
|
||||||
|
ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
|
||||||
|
scan_freq="2412")
|
||||||
|
|
||||||
def test_ap_wpa2_eap_ttls_dh_params(dev, apdev):
|
def test_ap_wpa2_eap_ttls_dh_params(dev, apdev):
|
||||||
"""WPA2-Enterprise connection using EAP-TTLS/CHAP and setting DH params"""
|
"""WPA2-Enterprise connection using EAP-TTLS/CHAP and setting DH params"""
|
||||||
params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
|
params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")
|
||||||
|
|
Loading…
Reference in a new issue