From: Richard Levitte Date: Mon, 7 Dec 2015 19:49:17 +0000 (+0100) Subject: Remove typedef of HMAC_CTX from crypto/hmac/hmac_lcl.h X-Git-Tag: OpenSSL_1_1_0-pre1~93 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=47abe380042cad34b78a1a9c7c18995f3e8f8ad2;p=openssl 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 --- diff --git a/crypto/hmac/hmac_lcl.h b/crypto/hmac/hmac_lcl.h index b14607dba4..f6ce8f9f3f 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