summaryrefslogtreecommitdiffstats
path: root/apps/dhparam.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-12-02 17:01:55 +0000
committerRichard Levitte <levitte@openssl.org>2020-12-04 07:49:24 +0100
commit300e8c4bf15b8476cbe33624ef47ea228e73d472 (patch)
treea94391d4ae13eac90e8df6eb157cae1e46b6205e /apps/dhparam.c
parentc2386b81feae22786502abb99b3b39f85e66d8a1 (diff)
Fix no-dsa
Skip tests that require DSA to be available. While we're doing this we also remove an OPENSSL_NO_DSA guard in the dhparam app that is no longer necessary (even though DSA may not be present in our own providers it could be available via a third party provider). Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13599)
Diffstat (limited to 'apps/dhparam.c')
-rw-r--r--apps/dhparam.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/dhparam.c b/apps/dhparam.c
index 58cdfd000d..ecb4e17db1 100644
--- a/apps/dhparam.c
+++ b/apps/dhparam.c
@@ -47,10 +47,8 @@ const OPTIONS dhparam_options[] = {
OPT_SECTION("General"),
{"help", OPT_HELP, '-', "Display this summary"},
{"check", OPT_CHECK, '-', "Check the DH parameters"},
-#ifndef OPENSSL_NO_DSA
{"dsaparam", OPT_DSAPARAM, '-',
"Read or generate DSA parameters, convert to DH"},
-#endif
#ifndef OPENSSL_NO_ENGINE
{"engine", OPT_ENGINE, 's', "Use engine e, possibly a hardware device"},
#endif