diff options
author | Matt Caswell <matt@openssl.org> | 2021-01-14 15:50:20 +0000 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2021-02-05 15:22:40 +0000 |
commit | a763ca11777ce01a286751f3f3dd9b106ef74f30 (patch) | |
tree | 7ad54dd22661b8373f57ffefdee897b6282dc225 /test/recipes/90-test_tls13secrets.t | |
parent | 8b1db5d329740bd5363fd1763d4030d0e015b521 (diff) | |
download | openssl-new-a763ca11777ce01a286751f3f3dd9b106ef74f30.tar.gz |
Stop disabling TLSv1.3 if ec and dh are disabled
Even if EC and DH are disabled then we may still be able to use TLSv1.3
if we have groups that have been plugged in by an external provider.
Fixes #13767
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/13916)
Diffstat (limited to 'test/recipes/90-test_tls13secrets.t')
-rw-r--r-- | test/recipes/90-test_tls13secrets.t | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/recipes/90-test_tls13secrets.t b/test/recipes/90-test_tls13secrets.t index ba437f59b8..13af681bf0 100644 --- a/test/recipes/90-test_tls13secrets.t +++ b/test/recipes/90-test_tls13secrets.t @@ -13,7 +13,9 @@ my $test_name = "tls13secrets"; setup($test_name); plan skip_all => "$test_name is not supported in this build" - if disabled("tls1_3") || disabled("shared"); + if disabled("tls1_3") + || disabled("shared") + || (disabled("ec") && disabled("dh")); plan tests => 1; |