[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Mon Dec 7 20:01:22 UTC 2015


The branch master has been updated
       via  47abe380042cad34b78a1a9c7c18995f3e8f8ad2 (commit)
      from  39d5193201cd0d73afebbd8c08f641b541c02b77 (commit)


- Log -----------------------------------------------------------------
commit 47abe380042cad34b78a1a9c7c18995f3e8f8ad2
Author: Richard Levitte <levitte at openssl.org>
Date:   Mon Dec 7 20:49:17 2015 +0100

    Remove typedef of HMAC_CTX from crypto/hmac/hmac_lcl.h
    
    This is already defined in include/openssl/ossl_typ.h.
    
    Reviewed-by: Matt Caswell <matt at openssl.org>

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

Summary of changes:
 crypto/hmac/hmac_lcl.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/crypto/hmac/hmac_lcl.h b/crypto/hmac/hmac_lcl.h
index b14607d..f6ce8f9 100644
--- a/crypto/hmac/hmac_lcl.h
+++ b/crypto/hmac/hmac_lcl.h
@@ -65,13 +65,13 @@ extern "C" {
 }
 #endif
 
-typedef struct hmac_ctx_st {
+struct hmac_ctx_st {
     const EVP_MD *md;
     EVP_MD_CTX *md_ctx;
     EVP_MD_CTX *i_ctx;
     EVP_MD_CTX *o_ctx;
     unsigned int key_length;
     unsigned char key[HMAC_MAX_MD_CBLOCK];
-} HMAC_CTX;
+};
 
 #endif


More information about the openssl-commits mailing list