summaryrefslogtreecommitdiffstats
path: root/crypto/evp/pmeth_lib.c
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2020-08-12 11:59:43 +1000
committerShane Lontis <shane.lontis@oracle.com>2020-08-12 11:59:43 +1000
commite3efe7a53299dff3cd2222542b6a999b1360d626 (patch)
treec65037e5c1c56b9cb732d5f5725ed1ed81ada946 /crypto/evp/pmeth_lib.c
parentaf88e64a98a6402dabd41ac2de194444dd285b49 (diff)
Add public API for gettables and settables for keymanagement, signatures and key exchange.
The openssl provider app will now display these params. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12396)
Diffstat (limited to 'crypto/evp/pmeth_lib.c')
-rw-r--r--crypto/evp/pmeth_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/pmeth_lib.c b/crypto/evp/pmeth_lib.c
index ba85a8c143..fe2cc689f6 100644
--- a/crypto/evp/pmeth_lib.c
+++ b/crypto/evp/pmeth_lib.c
@@ -680,7 +680,7 @@ const OSSL_PARAM *EVP_PKEY_CTX_settable_params(EVP_PKEY_CTX *ctx)
}
if (EVP_PKEY_CTX_IS_GEN_OP(ctx)
&& ctx->keymgmt != NULL)
- return evp_keymgmt_gen_settable_params(ctx->keymgmt);
+ return EVP_KEYMGMT_gen_settable_params(ctx->keymgmt);
return NULL;
}