summaryrefslogtreecommitdiffstats
path: root/apps/dsaparam.c
diff options
context:
space:
mode:
authorClemens Lang <cllang@redhat.com>2022-06-15 12:50:07 +0200
committerTomas Mraz <tomas@openssl.org>2022-07-01 11:11:23 +0200
commit30b2c3592e8511b60d44f93eb657a1ecb3662c08 (patch)
treeea96b620e829bc78a4c4f5f304ebed84c97f5415 /apps/dsaparam.c
parentd9650648821aadabf2d9f3de321f344230b13a4a (diff)
APPS: dsaparam, gendsa: Support setting properties
The -provider and -propquery options did not work on dsaparam and gendsa. Fix this and add tests that check that operations that are not supported by the FIPS provider work when run with | -provider default -propquery '?fips!=yes' See also https://bugzilla.redhat.com/show_bug.cgi?id=2094956, where this was initially reported. Signed-off-by: Clemens Lang <cllang@redhat.com> Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18576)
Diffstat (limited to 'apps/dsaparam.c')
-rw-r--r--apps/dsaparam.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/dsaparam.c b/apps/dsaparam.c
index 1bc48fa7da..54b4cd848b 100644
--- a/apps/dsaparam.c
+++ b/apps/dsaparam.c
@@ -148,7 +148,7 @@ int dsaparam_main(int argc, char **argv)
if (out == NULL)
goto end;
- ctx = EVP_PKEY_CTX_new_from_name(NULL, "DSA", NULL);
+ ctx = EVP_PKEY_CTX_new_from_name(app_get0_libctx(), "DSA", app_get0_propq());
if (ctx == NULL) {
BIO_printf(bio_err,
"Error, DSA parameter generation context allocation failed\n");
@@ -206,7 +206,8 @@ int dsaparam_main(int argc, char **argv)
}
if (genkey) {
EVP_PKEY_CTX_free(ctx);
- ctx = EVP_PKEY_CTX_new(params, NULL);
+ ctx = EVP_PKEY_CTX_new_from_pkey(app_get0_libctx(), params,
+ app_get0_propq());
if (ctx == NULL) {
BIO_printf(bio_err,
"Error, DSA key generation context allocation failed\n");