summaryrefslogtreecommitdiffstats
path: root/test/ssl-tests/14-curves.conf.in
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-04-26 10:38:32 +0100
committerMatt Caswell <matt@openssl.org>2017-05-04 11:49:19 +0100
commit5d62fd7cb2d7e1abc8c9a09cbc05744a7d346775 (patch)
treee7fe01f024f7144cdfcd3810b653b24349afb6fd /test/ssl-tests/14-curves.conf.in
parent05a2feb6841c786b24a104943b2765ef8bc7a61f (diff)
Add a ciphersuite config sanity check for clients
Ensure that there are ciphersuites enabled for the maximum supported version we are claiming in the ClientHello. Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3334)
Diffstat (limited to 'test/ssl-tests/14-curves.conf.in')
-rw-r--r--test/ssl-tests/14-curves.conf.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/ssl-tests/14-curves.conf.in b/test/ssl-tests/14-curves.conf.in
index 6e98b5a69a..9f6e4339a4 100644
--- a/test/ssl-tests/14-curves.conf.in
+++ b/test/ssl-tests/14-curves.conf.in
@@ -25,14 +25,15 @@ sub generate_tests() {
foreach (0..$#curves) {
my $curve = $curves[$_];
push @tests, {
- name => "curve-${curve}",
+ name => "curve-${curve}",
server => {
"Curves" => $curve,
# TODO(TLS1.3): Can we get this to work for TLSv1.3?
"MaxProtocol" => "TLSv1.2"
},
client => {
- "CipherString" => "ECDHE",
+ "CipherString" => "ECDHE",
+ "MaxProtocol" => "TLSv1.2",
"Curves" => $curve
},
test => {