Delete extra ;
[oweals/openssl.git] / crypto / evp / m_dss1.c
index a14e8590b10f4e08851052f90488a90220803da7..115c432f94618fba8e62d775217af5e1f2ad734d 100644 (file)
@@ -1,5 +1,5 @@
 /* crypto/evp/m_dss1.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 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 dss1_md=
+static const EVP_MD dss1_md=
        {
        NID_dsa,
        NID_dsaWithSHA1,
@@ -71,9 +72,12 @@ static EVP_MD dss1_md=
        SHA1_Update,
        SHA1_Final,
        EVP_PKEY_DSA_method,
+       SHA_CBLOCK,
+       sizeof(EVP_MD *)+sizeof(SHA_CTX),
        };
 
-EVP_MD *EVP_dss1()
+const EVP_MD *EVP_dss1(void)
        {
        return(&dss1_md);
        }
+#endif