提交 4f326dd8 编写于 作者: R Rich Salz

Skip ECDH tests for SSLv3

Reviewed-by: NViktor Dukhovni <viktor@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1597)
上级 3e373518
......@@ -475,8 +475,13 @@ sub testssl {
$flag = "-tls1_2";
}
foreach my $cipher (@{$ciphersuites{$protocol}}) {
ok(run(test([@ssltest, @exkeys, "-cipher", $cipher, $flag])),
"Testing $cipher");
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",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册