mirror of
https://github.com/curl/curl.git
synced 2026-07-06 05:47:22 +03:00
wolfSSL: able to differentiate between IP and DNS in alt names
Fix implemented in https://github.com/wolfSSL/wolfssl/pull/9380 Closes #19364
This commit is contained in:
parent
69622ff37d
commit
672886f734
1 changed files with 3 additions and 2 deletions
|
|
@ -195,8 +195,9 @@ class TestSSLUse:
|
|||
pytest.skip("h3 not supported")
|
||||
if env.curl_uses_lib('mbedtls'):
|
||||
pytest.skip("mbedtls falsely verifies a DNS: altname as IP address")
|
||||
if env.curl_uses_lib('wolfssl'):
|
||||
pytest.skip("wolfSSL falsely verifies a DNS: altname as IP address")
|
||||
if env.curl_uses_lib('wolfssl') and \
|
||||
env.curl_lib_version_before('wolfssl', '5.8.4'):
|
||||
pytest.skip("wolfSSL falsely verifies a DNS: altname as IP address in 5.8.2 and before")
|
||||
httpd.set_domain1_cred_name('domain1-very-bad')
|
||||
httpd.reload_if_config_changed()
|
||||
if proto == 'h3':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue