X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fevp%2Fm_sha.c;h=acccc8f92d8e13b9cd5d50f45780f64ccc145470;hp=10697c7ed38261444f1a8e6eb91e1f76d0b347a2;hb=75d44c0452e8807dcd9dd126390dd8df35c57efa;hpb=e8330cf5ac62d693bd0921dbb5e9dd3f73019512 diff --git a/crypto/evp/m_sha.c b/crypto/evp/m_sha.c index 10697c7ed3..acccc8f92d 100644 --- a/crypto/evp/m_sha.c +++ b/crypto/evp/m_sha.c @@ -56,17 +56,22 @@ * [including the GNU Public Licence.] */ -#ifndef OPENSSL_NO_SHA #include #include "cryptlib.h" + +#if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA0) + #include #include #include +#ifndef OPENSSL_NO_RSA +#include +#endif static int init(EVP_MD_CTX *ctx) { return SHA_Init(ctx->md_data); } -static int update(EVP_MD_CTX *ctx,const void *data,unsigned long count) +static int update(EVP_MD_CTX *ctx,const void *data,size_t count) { return SHA_Update(ctx->md_data,data,count); } static int final(EVP_MD_CTX *ctx,unsigned char *md)