summaryrefslogtreecommitdiffstats
path: root/crypto/hmac
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-12-07 20:49:17 +0100
committerRichard Levitte <levitte@openssl.org>2015-12-07 20:53:17 +0100
commit47abe380042cad34b78a1a9c7c18995f3e8f8ad2 (patch)
treebe683ad43d28bc2f44efcee362ee40cf1f8105d6 /crypto/hmac
parent39d5193201cd0d73afebbd8c08f641b541c02b77 (diff)
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@openssl.org>
Diffstat (limited to 'crypto/hmac')
-rw-r--r--crypto/hmac/hmac_lcl.h4
1 files changed, 2 insertions, 2 deletions
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