The branch openssl-3.0 has been updated
via 443cd5b08cd1e3b86d6a6c8894f65757355819e2 (commit)
from 1ef526ef421febe50a105bb140d7e3a70bd76b61 (commit)
- Log -----------------------------------------------------------------
commit 443cd5b08cd1e3b86d6a6c8894f65757355819e2
Author: PW Hu <[email protected]>
Date: Thu Sep 2 12:02:06 2021 +0800
EVP_PKEY_gettable_params.pod: Update argument names
CLA: trivial
Reviewed-by: Paul Dale <[email protected]>
Reviewed-by: Richard Levitte <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/16494)
(cherry picked from commit 6f2f59944826b5b7e033af438f5831493d0362c9)
-----------------------------------------------------------------------
Summary of changes:
doc/man3/EVP_PKEY_gettable_params.pod | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/doc/man3/EVP_PKEY_gettable_params.pod
b/doc/man3/EVP_PKEY_gettable_params.pod
index 4c0737d050..b28ed69939 100644
--- a/doc/man3/EVP_PKEY_gettable_params.pod
+++ b/doc/man3/EVP_PKEY_gettable_params.pod
@@ -22,10 +22,10 @@ EVP_PKEY_get_octet_string_param
BIGNUM **bn);
int EVP_PKEY_get_utf8_string_param(const EVP_PKEY *pkey, const char *key_name,
char *str, size_t max_buf_sz,
- size_t *out_sz);
+ size_t *out_len);
int EVP_PKEY_get_octet_string_param(const EVP_PKEY *pkey, const char
*key_name,
unsigned char *buf, size_t max_buf_sz,
- size_t *out_sz);
+ size_t *out_len);
=head1 DESCRIPTION
@@ -70,7 +70,7 @@ All other methods return 1 if a value associated with the
key's I<key_name> was
successfully returned, or 0 if there was an error.
An error may be returned by methods EVP_PKEY_get_utf8_string_param() and
EVP_PKEY_get_octet_string_param() if I<max_buf_sz> is not big enough to hold
the
-value. If I<out_sz> is not NULL, I<*out_sz> will be assigned the required
+value. If I<out_len> is not NULL, I<*out_len> will be assigned the required
buffer size to hold the value.
=head1 EXAMPLES