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>
This commit is contained in:
parent
39d5193201
commit
47abe38004
@ -65,13 +65,13 @@ extern "C" {
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef struct hmac_ctx_st {
|
struct hmac_ctx_st {
|
||||||
const EVP_MD *md;
|
const EVP_MD *md;
|
||||||
EVP_MD_CTX *md_ctx;
|
EVP_MD_CTX *md_ctx;
|
||||||
EVP_MD_CTX *i_ctx;
|
EVP_MD_CTX *i_ctx;
|
||||||
EVP_MD_CTX *o_ctx;
|
EVP_MD_CTX *o_ctx;
|
||||||
unsigned int key_length;
|
unsigned int key_length;
|
||||||
unsigned char key[HMAC_MAX_MD_CBLOCK];
|
unsigned char key[HMAC_MAX_MD_CBLOCK];
|
||||||
} HMAC_CTX;
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user