diff options
author | Matt Caswell <matt@openssl.org> | 2020-11-23 13:01:34 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2020-11-24 18:18:18 +0100 |
commit | ee8252847d1ccf39a48ab382971f8f18ac3f4089 (patch) | |
tree | 61187c42d8ab6d802fdf541226e76d092bad7c08 /apps | |
parent | Add missing ERR_load_KDF_strings(3) to util/missingcrypto111.txt as well. (diff) | |
download | openssl-ee8252847d1ccf39a48ab382971f8f18ac3f4089.tar.xz openssl-ee8252847d1ccf39a48ab382971f8f18ac3f4089.zip |
Undeprecate the -dsaparam option in the dhparam app
The -dsaparam option was deprecated because it was previously using
deprecated functions in order to operate. This is no longer the case
and therefore does not need to be deprecated.
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/13485)
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dhparam.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/dhparam.c b/apps/dhparam.c index 6717c952e9..e2fb38d8c0 100644 --- a/apps/dhparam.c +++ b/apps/dhparam.c @@ -124,11 +124,7 @@ int dhparam_main(int argc, char **argv) text = 1; break; case OPT_DSAPARAM: -# ifdef OPENSSL_NO_DEPRECATED_3_0 - BIO_printf(bio_err, "The dsaparam option is deprecated.\n"); -# else dsaparam = 1; -# endif break; case OPT_2: g = 2; |