X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=crypto%2Fevp%2Fm_ripemd.c;h=3d781a4e8df6dabea4dd1529e59981d39d8c7801;hb=8d5b4ee1cab7cd02f9fe246fb60d7d018a315a86;hp=04c5d8897b9928b3bd0492924136255b8988fffd;hpb=58964a492275ca9a59a0cd9c8155cb2491b4b909;p=oweals%2Fopenssl.git diff --git a/crypto/evp/m_ripemd.c b/crypto/evp/m_ripemd.c index 04c5d8897b..3d781a4e8d 100644 --- a/crypto/evp/m_ripemd.c +++ b/crypto/evp/m_ripemd.c @@ -56,11 +56,13 @@ * [including the GNU Public Licence.] */ +#ifndef NO_RIPEMD #include #include "cryptlib.h" -#include "evp.h" -#include "objects.h" -#include "x509.h" +#include +#include +#include +#include static EVP_MD ripemd160_md= { @@ -75,7 +77,8 @@ static EVP_MD ripemd160_md= sizeof(EVP_MD *)+sizeof(RIPEMD160_CTX), }; -EVP_MD *EVP_ripemd160() +EVP_MD *EVP_ripemd160(void) { return(&ripemd160_md); } +#endif