EVP constification.
[openssl.git] / crypto / evp / m_sha1.c
index 30037ffcd81712861794f00ceaa17e7648436b8b..57a1ab0cceca5ab85d4f155d63689386c29bdeb4 100644 (file)
@@ -1,5 +1,5 @@
 /* crypto/evp/m_sha1.c */
-/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
+/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
  * This package is an SSL implementation written
  * [including the GNU Public Licence.]
  */
 
+#ifndef 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=
        {
@@ -71,9 +72,12 @@ static EVP_MD sha1_md=
        SHA1_Update,
        SHA1_Final,
        EVP_PKEY_RSA_method,
+       SHA_CBLOCK,
+       sizeof(EVP_MD *)+sizeof(SHA_CTX),
        };
 
-EVP_MD *EVP_sha1()
+EVP_MD *EVP_sha1(void)
        {
        return(&sha1_md);
        }
+#endif