X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=crypto%2Fevp%2Fm_dss1.c;h=115c432f94618fba8e62d775217af5e1f2ad734d;hb=c518ade1fd9a791625646bc9e77f5b9b2d378b78;hp=4315086abe4d661294cc76abf8150d2bc18fe6ec;hpb=ec577822f95a8bca0023c5c77cef1a4916822d4a;p=oweals%2Fopenssl.git diff --git a/crypto/evp/m_dss1.c b/crypto/evp/m_dss1.c index 4315086abe..115c432f94 100644 --- a/crypto/evp/m_dss1.c +++ b/crypto/evp/m_dss1.c @@ -56,13 +56,14 @@ * [including the GNU Public Licence.] */ +#ifndef OPENSSL_NO_SHA #include #include "cryptlib.h" #include #include #include -static EVP_MD dss1_md= +static const EVP_MD dss1_md= { NID_dsa, NID_dsaWithSHA1, @@ -75,7 +76,8 @@ static EVP_MD dss1_md= sizeof(EVP_MD *)+sizeof(SHA_CTX), }; -EVP_MD *EVP_dss1(void) +const EVP_MD *EVP_dss1(void) { return(&dss1_md); } +#endif