Add first cut symmetric crypto support.
[openssl.git] / crypto / evp / m_sha1.c
index 87135a9cf21d27204ff5cd397c4eb205c79febeb..ddc905179441f2ef95e1803877af18fb61be2832 100644 (file)
  * [including the GNU Public Licence.]
  */
 
+#ifndef OPENSSL_NO_SHA
 #include <stdio.h>
 #include "cryptlib.h"
-#include "evp.h"
-#include "objects.h"
-#include "x509.h"
+#include <openssl/evp.h>
+#include <openssl/objects.h>
+#include <openssl/x509.h>
 
-static EVP_MD sha1_md=
+static const EVP_MD sha1_md=
        {
        NID_sha1,
        NID_sha1WithRSAEncryption,
@@ -75,7 +76,8 @@ static EVP_MD sha1_md=
        sizeof(EVP_MD *)+sizeof(SHA_CTX),
        };
 
-EVP_MD *EVP_sha1()
+const EVP_MD *EVP_sha1(void)
        {
        return(&sha1_md);
        }
+#endif