Commit 4f326dd8 authored by Rich Salz's avatar Rich Salz
Browse files

Skip ECDH tests for SSLv3

parent 3e373518
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -475,9 +475,14 @@ sub testssl {
                $flag = "-tls1_2";
            }
            foreach my $cipher (@{$ciphersuites{$protocol}}) {
                if ($protocol eq "SSLv3" && $cipher =~ /ECDH/ ) {
                    note "*****SKIPPING $protocol $cipher";
                    ok(1);
                } else {
                    ok(run(test([@ssltest, @exkeys, "-cipher", $cipher, $flag])),
                    "Testing $cipher");
                }
            }
            is(run(test([@ssltest,
                         "-s_cipher", "EDH",
                         "-c_cipher", 'EDH:@SECLEVEL=1',