AlgorithmIdentifier bugs
[oweals/openssl.git] / crypto / evp / m_sha1.c
index ddc905179441f2ef95e1803877af18fb61be2832..57a1ab0cceca5ab85d4f155d63689386c29bdeb4 100644 (file)
  * [including the GNU Public Licence.]
  */
 
-#ifndef OPENSSL_NO_SHA
+#ifndef NO_SHA
 #include <stdio.h>
 #include "cryptlib.h"
 #include <openssl/evp.h>
 #include <openssl/objects.h>
 #include <openssl/x509.h>
 
-static const EVP_MD sha1_md=
+static EVP_MD sha1_md=
        {
        NID_sha1,
        NID_sha1WithRSAEncryption,
@@ -76,7 +76,7 @@ static const EVP_MD sha1_md=
        sizeof(EVP_MD *)+sizeof(SHA_CTX),
        };
 
-const EVP_MD *EVP_sha1(void)
+EVP_MD *EVP_sha1(void)
        {
        return(&sha1_md);
        }