Add default ASN1 handling to support FIPS.
[openssl.git] / crypto / evp / m_null.c
index 8952709330c052323deb891543db4f37e7a89818..cb0721699dba3b3c07ea484b90137bb33a62934f 100644 (file)
 #include <openssl/objects.h>
 #include <openssl/x509.h>
 
-static int function(void)
-       {
-       return 1;
-       }
+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 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 *),