Latest update.
This commit is contained in:
@@ -11,12 +11,19 @@ use OpenSSL::Test;
|
||||
use OpenSSL::Test::Utils qw(anydisabled disabled);
|
||||
setup("no_test_here");
|
||||
|
||||
# We test version-flexible negotiation (undef) and each protocol version.
|
||||
my @protocols = (undef, "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2", "DTLSv1", "DTLSv1.2");
|
||||
our $fips_mode;
|
||||
|
||||
my @protocols;
|
||||
my @is_disabled = (0);
|
||||
push @is_disabled, anydisabled("ssl3", "tls1", "tls1_1", "tls1_2", "dtls1", "dtls1_2");
|
||||
|
||||
# We test version-flexible negotiation (undef) and each protocol version.
|
||||
if ($fips_mode) {
|
||||
@protocols = (undef, "TLSv1.2", "DTLSv1.2");
|
||||
} else {
|
||||
@protocols = (undef, "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2", "DTLSv1", "DTLSv1.2");
|
||||
}
|
||||
|
||||
our @tests = ();
|
||||
|
||||
sub generate_tests() {
|
||||
|
||||
Reference in New Issue
Block a user