From 6d6e8070c26a043461edffc05c753d6350b6f085 Mon Sep 17 00:00:00 2001 From: TJ Saunders Date: Fri, 10 Jun 2016 13:10:51 -0700 Subject: [PATCH] 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) --- doc/crypto/EVP_MD_meth_new.pod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.34.1