Fix error code. make update
[openssl.git] / crypto / evp / m_null.c
index d953672856feb665da52259eab17bdd057615324..cb0721699dba3b3c07ea484b90137bb33a62934f 100644 (file)
 
 #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(void)
-       {
-       }
+static int init(EVP_MD_CTX *ctx)
+       { return 1; }
+
+static int update(EVP_MD_CTX *ctx,const void *data,size_t count)
+       { return 1; }
 
-static EVP_MD null_md=
+static int final(EVP_MD_CTX *ctx,unsigned char *md)
+       { return 1; }
+
+static const EVP_MD null_md=
        {
        NID_undef,
        NID_undef,
        0,
-       function,
-       function,
-       function,
-       
+       0,
+       init,
+       update,
+       final,
+       NULL,
+       NULL,
        EVP_PKEY_NULL_method,
        0,
        sizeof(EVP_MD *),
        };
 
-EVP_MD *EVP_md_null(void)
+const EVP_MD *EVP_md_null(void)
        {
        return(&null_md);
        }