提交 1316c9ff 编写于 作者: B Benjamin Kaduk 提交者: Rich Salz

Fix no-ec

Also remove nested OPENSSL_NO_EC conditional; it was properly indented,
but a no-op.
Reviewed-by: NRich Salz <rsalz@openssl.org>
Reviewed-by: NBenjamin Kaduk <kaduk@mit.edu>
(Merged from https://github.com/openssl/openssl/pull/3693)
上级 3ec32be7
......@@ -621,7 +621,6 @@ static int tls1_check_cert_param(SSL *s, X509 *x, int check_ee_md)
return rv;
}
# ifndef OPENSSL_NO_EC
/*
* tls1_check_ec_tmp_key - Check EC temporary key compatibility
* @s: SSL connection
......@@ -658,7 +657,6 @@ int tls1_check_ec_tmp_key(SSL *s, unsigned long cid)
return 1;
return 0;
}
# endif /* OPENSSL_NO_EC */
#else
......
......@@ -8,6 +8,7 @@
use OpenSSL::Test qw/:DEFAULT srctop_file/;
use OpenSSL::Test::Utils;
setup("test_x509_check_cert_pkey");
......@@ -26,9 +27,12 @@ ok(run(test(["x509_check_cert_pkey_test",
srctop_file("test", "certs", "server-dsa-cert.pem"),
srctop_file("test", "certs", "server-dsa-key.pem"), "cert", "ok"])));
# ecc
ok(run(test(["x509_check_cert_pkey_test",
srctop_file("test", "certs", "server-ecdsa-cert.pem"),
srctop_file("test", "certs", "server-ecdsa-key.pem"), "cert", "ok"])));
SKIP: {
skip "EC disabled", 1 if disabled("ec");
ok(run(test(["x509_check_cert_pkey_test",
srctop_file("test", "certs", "server-ecdsa-cert.pem"),
srctop_file("test", "certs", "server-ecdsa-key.pem"), "cert", "ok"])));
}
# certificate request (rsa)
ok(run(test(["x509_check_cert_pkey_test",
srctop_file("test", "certs", "x509-check.csr"),
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册