Change the EVP_somecipher() and EVP_somedigest()
[openssl.git] / crypto / evp / m_null.c
index 47db2c5258072eb91550ce18da20a4d2237cbcc4..8952709330c052323deb891543db4f37e7a89818 100644 (file)
@@ -1,5 +1,5 @@
 /* crypto/evp/m_null.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 void function()
+static int function(void)
        {
+       return 1;
        }
 
-static EVP_MD null_md=
+static const EVP_MD null_md=
        {
        NID_undef,
        NID_undef,
@@ -75,10 +76,12 @@ static EVP_MD null_md=
        function,
        function,
        
-       EVP_PKEY_NULL_method
+       EVP_PKEY_NULL_method,
+       0,
+       sizeof(EVP_MD *),
        };
 
-EVP_MD *EVP_md_null()
+const EVP_MD *EVP_md_null(void)
        {
        return(&null_md);
        }