EVP_PKEY_gettable_params.pod: Update argument names
[openssl.git] / doc / man3 / EVP_PKEY_gettable_params.pod
index 4c0737d05037ae74ff850e1b58758271ad100675..b28ed6993993ad81bd9ce2e12769fa76032ae9b8 100644 (file)
@@ -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