diff --git a/lib/hcrypto/evp.c b/lib/hcrypto/evp.c index 99933ccae..c7fde43dd 100644 --- a/lib/hcrypto/evp.c +++ b/lib/hcrypto/evp.c @@ -79,6 +79,13 @@ struct hc_evp_md { evp_md_cleanup cleanup; }; +struct hc_EVP_MD_CTX { + const EVP_MD *md; + ENGINE *engine; + void *ptr; +}; + + /** * Return the output size of the message digest function. *