From: TJ Saunders Date: Fri, 10 Jun 2016 20:10:51 +0000 (-0700) Subject: Ensure that the EVP_MD_meth_new docs properly match the declared functions; X-Git-Tag: OpenSSL_1_1_0-pre6~486 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6d6e8070c26a043461edffc05c753d6350b6f085;p=oweals%2Fopenssl.git Ensure that the EVP_MD_meth_new docs properly match the declared functions; it looks like these names have shifted a little over time. Reviewed-by: Kurt Roeckx Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/1203) --- diff --git a/doc/crypto/EVP_MD_meth_new.pod b/doc/crypto/EVP_MD_meth_new.pod index c222e37e2f..427ab268ed 100644 --- a/doc/crypto/EVP_MD_meth_new.pod +++ b/doc/crypto/EVP_MD_meth_new.pod @@ -18,9 +18,9 @@ EVP_MD methods #include - EVP_MD *EVP_MD_create_method(int md_type, int pkey_type); + EVP_MD *EVP_MD_meth_new(int md_type, int pkey_type); EVP_MD *EVP_MD_meth_dup(const EVP_MD *md); - void EVP_MD_destroy_method(EVP_MD *md); + void EVP_MD_meth_free(EVP_MD *md); int EVP_MD_meth_set_input_blocksize(EVP_MD *md, int blocksize); int EVP_MD_meth_set_result_size(EVP_MD *md, int resultsize);