]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: PKCS#12 with extra certs on the server
authorJouni Malinen <jouni@qca.qualcomm.com>
Fri, 5 Feb 2016 23:09:42 +0000 (01:09 +0200)
committerJouni Malinen <j@w1.fi>
Fri, 5 Feb 2016 23:14:43 +0000 (01:14 +0200)
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
tests/hwsim/auth_serv/server-extra.pkcs12 [new file with mode: 0644]
tests/hwsim/test_ap_eap.py

diff --git a/tests/hwsim/auth_serv/server-extra.pkcs12 b/tests/hwsim/auth_serv/server-extra.pkcs12
new file mode 100644 (file)
index 0000000..c172cb3
Binary files /dev/null and b/tests/hwsim/auth_serv/server-extra.pkcs12 differ
index adabaff7f81ea03e5eada2cfb3759e78a5cce748..6a32829040953c2b06b7943bc821a921084eec10 100644 (file)
@@ -3996,6 +3996,19 @@ def test_ap_wpa2_eap_ttls_server_pkcs12(dev, apdev):
                    ca_cert="auth_serv/ca.pem", phase2="auth=MSCHAP",
                    scan_freq="2412")
 
+def test_ap_wpa2_eap_ttls_server_pkcs12_extra(dev, apdev):
+    """EAP-TTLS and server PKCS#12 file with extra certs"""
+    skip_with_fips(dev[0])
+    params = int_eap_server_params()
+    del params["server_cert"]
+    params["private_key"] = "auth_serv/server-extra.pkcs12"
+    params["private_key_passwd"] = "whatever"
+    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):
     """WPA2-Enterprise connection using EAP-TTLS/CHAP and setting DH params"""
     params = hostapd.wpa2_eap_params(ssid="test-wpa2-eap")