[openssl-commits] [openssl] master update
Rich Salz
rsalz at openssl.org
Sat Jun 11 16:12:20 UTC 2016
The branch master has been updated
via 6d6e8070c26a043461edffc05c753d6350b6f085 (commit)
from f3cf2251debba61b568416124736de1d5a7ddc8c (commit)
- Log -----------------------------------------------------------------
commit 6d6e8070c26a043461edffc05c753d6350b6f085
Author: TJ Saunders <tj at castaglia.org>
Date: Fri Jun 10 13:10:51 2016 -0700
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 at openssl.org>
Reviewed-by: Rich Salz <rsalz at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1203)
-----------------------------------------------------------------------
Summary of changes:
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 c222e37..427ab26 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);
More information about the openssl-commits
mailing list