X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=crypto%2Fevp%2Fm_sha.c;h=3f30dfc579ca4d0f4406465165354045e4e2f624;hb=f092a073a75be72731e57b175d2df73d2d0eddd8;hp=a3343bb2eb8e87847089b0417429278f15bd28e3;hpb=69104cdf34462d4973e6bdddaf0ffb9cba041fb8;p=oweals%2Fopenssl.git diff --git a/crypto/evp/m_sha.c b/crypto/evp/m_sha.c index a3343bb2eb..3f30dfc579 100644 --- a/crypto/evp/m_sha.c +++ b/crypto/evp/m_sha.c @@ -58,17 +58,21 @@ #include #include "cryptlib.h" +#include "evp_locl.h" -#ifndef OPENSSL_NO_SHA +#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)