Change the command line options of mkerr.pl so -static is now default and
[oweals/openssl.git] / crypto / evp / m_dss.c
index 743beacc5bf68de46789d56f04d438de7dba1e80..356b936a1c9c1815e3cb97afb710631b7aef811f 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=
        {
        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()
+EVP_MD *EVP_dss(void)
        {
        return(&dsa_md);
        }