]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Skip eap_tls_pkcs8_pkcs5_v15 with GnuTLS
authorJouni Malinen <j@w1.fi>
Thu, 28 Dec 2017 11:02:04 +0000 (13:02 +0200)
committerJouni Malinen <j@w1.fi>
Thu, 28 Dec 2017 20:33:12 +0000 (22:33 +0200)
It looks like this private key format is not supported in GnuTLS (tested
with version 3.4.10).

Signed-off-by: Jouni Malinen <j@w1.fi>
tests/hwsim/test_ap_eap.py

index 660fe9858b9b8e268a548f1439c8f0293c01d99e..2c4c406b2d529150b3ab8d703e45759eaf3db35a 100644 (file)
@@ -82,7 +82,7 @@ def check_ocsp_support(dev):
 
 def check_pkcs5_v15_support(dev):
     tls = dev.request("GET tls_library")
-    if "BoringSSL" in tls:
+    if "BoringSSL" in tls or "GnuTLS" in tls:
         raise HwsimSkip("PKCS#5 v1.5 not supported with this TLS library: " + tls)
 
 def check_ocsp_multi_support(dev):