Note the "ex_data" changes.
[openssl.git] / crypto / evp / m_dss.c
index 743beacc5bf68de46789d56f04d438de7dba1e80..1a10f676587bc6877139f595c836fb1fa016c9c1 100644 (file)
@@ -1,5 +1,5 @@
 /* crypto/evp/m_dss.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
 
 #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 dsa_md=
+#ifndef OPENSSL_NO_SHA
+static const EVP_MD dsa_md=
        {
        NID_dsaWithSHA,
        NID_dsaWithSHA,
        SHA_DIGEST_LENGTH,
-       SHA_Init,
-       SHA_Update,
-       SHA_Final,
+       SHA1_Init,
+       SHA1_Update,
+       SHA1_Final,
        EVP_PKEY_DSA_method,
+       SHA_CBLOCK,
+       sizeof(EVP_MD *)+sizeof(SHA_CTX),
        };
 
-EVP_MD *EVP_dss()
+const EVP_MD *EVP_dss(void)
        {
        return(&dsa_md);
        }
-
+#endif