summaryrefslogtreecommitdiffstats
path: root/doc/man3/OSSL_PARAM_construct_from_text.pod
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-08-12 14:56:18 +0200
committerRichard Levitte <levitte@openssl.org>2019-08-15 10:49:56 +0200
commitae3ff60e7bea6fb7510b5c0c2b9599d8430cf001 (patch)
treea6cef6a574ebeac091b9bdb57ba6aff5c257becf /doc/man3/OSSL_PARAM_construct_from_text.pod
parentaee6e29f0e88df18ebc21dbcf9d4d5794d7511e0 (diff)
Add missing EVP param utility functions
These functions were missing for a completes API: EVP_MD_get_params(), EVP_CIPHER_get_params(), EVP_CIPHER_CTX_set_params(), and EVP_CIPHER_CTX_get_params Additionally, we also add all the corresponding parameter descriptor returning functions, along the correspoding provider dispatches: EVP_MD_gettable_params(), EVP_MD_CTX_settable_params(), EVP_MD_CTX_gettable_params(), EVP_CIPHER_gettable_params(), EVP_CIPHER_CTX_settable_params(), and EVP_CIPHER_CTX_gettable_params() Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/9576)
Diffstat (limited to 'doc/man3/OSSL_PARAM_construct_from_text.pod')
-rw-r--r--doc/man3/OSSL_PARAM_construct_from_text.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/OSSL_PARAM_construct_from_text.pod b/doc/man3/OSSL_PARAM_construct_from_text.pod
index e8e2639864..5dc08bd325 100644
--- a/doc/man3/OSSL_PARAM_construct_from_text.pod
+++ b/doc/man3/OSSL_PARAM_construct_from_text.pod
@@ -120,7 +120,7 @@ Can be written like this instead:
OSSL_PARAM *params =
OPENSSL_zalloc(sizeof(*params)
* (sk_OPENSSL_STRING_num(opts) + 1));
- const OSSL_PARAM *paramdefs = EVP_MAC_CTX_set_param_types(mac);
+ const OSSL_PARAM *paramdefs = EVP_MAC_CTX_settable_params(mac);
size_t params_n;
char *opt = "<unknown>";