]> git.ipfire.org Git - thirdparty/openssl.git/blame - test/ssl-tests/28-seclevel.conf.in
Fix reversed meaning of error codes
[thirdparty/openssl.git] / test / ssl-tests / 28-seclevel.conf.in
CommitLineData
75b68c9e 1# -*- mode: perl; -*-
c486283c 2# Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
75b68c9e 3#
909f1a2e 4# Licensed under the Apache License 2.0 (the "License"). You may not use
75b68c9e
TM
5# this file except in compliance with the License. You can obtain a copy
6# in the file LICENSE in the source distribution or at
7# https://www.openssl.org/source/license.html
8
9
10## SSL test configurations
11
12package ssltests;
65d2c16c 13use OpenSSL::Test::Utils;
75b68c9e
TM
14
15our @tests = (
16 {
17 name => "SECLEVEL 3 with default key",
18 server => { "CipherString" => "DEFAULT:\@SECLEVEL=3" },
19 client => { },
20 test => { "ExpectedResult" => "ServerFail" },
21 },
65d2c16c
MC
22);
23
24our @tests_ec = (
75b68c9e
TM
25 {
26 name => "SECLEVEL 3 with ED448 key",
27 server => { "CipherString" => "DEFAULT:\@SECLEVEL=3",
28 "Certificate" => test_pem("server-ed448-cert.pem"),
29 "PrivateKey" => test_pem("server-ed448-key.pem") },
30 client => { },
31 test => { "ExpectedResult" => "Success" },
32 },
75b68c9e
TM
33 {
34 name => "SECLEVEL 3 with P-384 key, X25519 ECDHE",
35 server => { "CipherString" => "DEFAULT:\@SECLEVEL=3",
36 "Certificate" => test_pem("p384-server-cert.pem"),
37 "PrivateKey" => test_pem("p384-server-key.pem"),
38 "Groups" => "X25519" },
39 client => { "CipherString" => "ECDHE:\@SECLEVEL=3",
40 "VerifyCAFile" => test_pem("p384-root.pem") },
41 test => { "ExpectedResult" => "Success" },
42 },
43);
65d2c16c
MC
44
45our @tests_tls1_2 = (
46 {
47 name => "SECLEVEL 3 with ED448 key, TLSv1.2",
48 server => { "CipherString" => "DEFAULT:\@SECLEVEL=3",
49 "Certificate" => test_pem("server-ed448-cert.pem"),
50 "PrivateKey" => test_pem("server-ed448-key.pem"),
51 "MaxProtocol" => "TLSv1.2" },
52 client => { },
53 test => { "ExpectedResult" => "Success" },
54 },
55);
56
57push @tests, @tests_ec unless disabled("ec");
58push @tests, @tests_tls1_2 unless disabled("tls1_2") || disabled("ec");