From: PW Hu Date: Thu, 2 Sep 2021 04:02:06 +0000 (+0800) Subject: EVP_PKEY_gettable_params.pod: Update argument names X-Git-Tag: openssl-3.2.0-alpha1~3609 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f2f59944826b5b7e033af438f5831493d0362c9;p=thirdparty%2Fopenssl.git EVP_PKEY_gettable_params.pod: Update argument names CLA: trivial Reviewed-by: Paul Dale Reviewed-by: Richard Levitte Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/16494) --- diff --git a/doc/man3/EVP_PKEY_gettable_params.pod b/doc/man3/EVP_PKEY_gettable_params.pod index 4c0737d0503..b28ed699399 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 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 is not big enough to hold the -value. If I is not NULL, I<*out_sz> will be assigned the required +value. If I is not NULL, I<*out_len> will be assigned the required buffer size to hold the value. =head1 EXAMPLES