aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorTJ Saunders <tj@castaglia.org>2016-06-10 13:10:51 -0700
committerRich Salz <rsalz@openssl.org>2016-06-11 12:12:18 -0400
commit6d6e8070c26a043461edffc05c753d6350b6f085 (patch)
treeb999f5bfec448faf6a0e3a0760683b675470fe59 /doc
parentf3cf2251debba61b568416124736de1d5a7ddc8c (diff)
downloadopenssl-6d6e8070c26a043461edffc05c753d6350b6f085.tar.gz
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 <kurt@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1203)
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/EVP_MD_meth_new.pod4
1 files 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 <openssl/evp.h>
- 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);