diff options
author | Jouni Malinen <j@w1.fi> | 2017-12-28 11:02:04 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2017-12-28 20:33:12 (GMT) |
commit | 2d9ad634c84624c730e1168aa26b84f131917d84 (patch) | |
tree | 2152b80a735b3cf0656542c1c6072e02e09c14e0 | |
parent | dc2a3cec6644a4aef290f5c475d1e603a4bf2c37 (diff) | |
download | hostap-2d9ad634c84624c730e1168aa26b84f131917d84.zip hostap-2d9ad634c84624c730e1168aa26b84f131917d84.tar.gz hostap-2d9ad634c84624c730e1168aa26b84f131917d84.tar.bz2 |
tests: Skip eap_tls_pkcs8_pkcs5_v15 with GnuTLS
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>
-rw-r--r-- | tests/hwsim/test_ap_eap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hwsim/test_ap_eap.py b/tests/hwsim/test_ap_eap.py index 660fe98..2c4c406 100644 --- a/tests/hwsim/test_ap_eap.py +++ b/tests/hwsim/test_ap_eap.py @@ -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): |