diff options
author | Pauli <paul.dale@oracle.com> | 2020-10-20 05:32:26 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-12-17 21:09:54 +0100 |
commit | 47422549da431cf9546a148d916d162e196fcd44 (patch) | |
tree | a09cdee887b43d97878a2c1382b6df8b48fddc5e /apps/dhparam.c | |
parent | dsa: fuzzer deprecation changes (diff) | |
download | openssl-47422549da431cf9546a148d916d162e196fcd44.tar.xz openssl-47422549da431cf9546a148d916d162e196fcd44.zip |
dsa: apps deprecation changes
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/13638)
Diffstat (limited to 'apps/dhparam.c')
-rw-r--r-- | apps/dhparam.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/dhparam.c b/apps/dhparam.c index a69dfd3810..8242a1f1d7 100644 --- a/apps/dhparam.c +++ b/apps/dhparam.c @@ -47,8 +47,10 @@ const OPTIONS dhparam_options[] = { OPT_SECTION("General"), {"help", OPT_HELP, '-', "Display this summary"}, {"check", OPT_CHECK, '-', "Check the DH parameters"}, +#if !defined(OPENSSL_NO_DSA) || !defined(OPENSSL_NO_DEPRECATED_3_0) {"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 |