[openssl] master update

Richard Levitte levitte at openssl.org
Tue Sep 24 12:42:40 UTC 2019


The branch master has been updated
       via  7c2a981ff7ca721a85687dcd972d54361434806f (commit)
      from  0773687a2453c3553933a3627e798997abe41691 (commit)


- Log -----------------------------------------------------------------
commit 7c2a981ff7ca721a85687dcd972d54361434806f
Author: Richard Levitte <levitte at openssl.org>
Date:   Tue Sep 24 13:23:38 2019 +0200

    DOC: fix documentation of som EVP_MD_CTX functions
    
    They were documented to take an EVP_MD pointer, when they really take
    an EVP_MD_CTX pointer.
    
    Fixes #9993
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/9996)

-----------------------------------------------------------------------

Summary of changes:
 doc/man3/EVP_DigestInit.pod | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/man3/EVP_DigestInit.pod b/doc/man3/EVP_DigestInit.pod
index 69a52d10aa..8270d7040b 100644
--- a/doc/man3/EVP_DigestInit.pod
+++ b/doc/man3/EVP_DigestInit.pod
@@ -68,9 +68,9 @@ EVP_MD_do_all_ex
 
  const EVP_MD *EVP_MD_CTX_md(const EVP_MD_CTX *ctx);
  const char *EVP_MD_CTX_name(const EVP_MD_CTX *ctx);
- int EVP_MD_CTX_size(const EVP_MD *ctx);
- int EVP_MD_CTX_block_size(const EVP_MD *ctx);
- int EVP_MD_CTX_type(const EVP_MD *ctx);
+ int EVP_MD_CTX_size(const EVP_MD_CTX *ctx);
+ int EVP_MD_CTX_block_size(const EVP_MD_CTX *ctx);
+ int EVP_MD_CTX_type(const EVP_MD_CTX *ctx);
  void *EVP_MD_CTX_md_data(const EVP_MD_CTX *ctx);
  int (*EVP_MD_CTX_update_fn(EVP_MD_CTX *ctx))(EVP_MD_CTX *ctx,
                                               const void *data, size_t count);


More information about the openssl-commits mailing list