EVP_DecryptInit() should call EVP_CipherInit() not EVP_CipherInit_ex().
[openssl.git] / crypto / evp / m_md4.c
index cf429aee5d5a712561488e6ee5fc9b5681532b14..e19b6637546c019e87c4c3778e7f8ecc2f13b0f0 100644 (file)
 #include <openssl/evp.h>
 #include <openssl/objects.h>
 #include <openssl/x509.h>
+#include <openssl/md4.h>
+
+static int init(EVP_MD_CTX *ctx)
+       { return MD4_Init(ctx->md_data); }
+
+static int update(EVP_MD_CTX *ctx,const void *data,unsigned long count)
+       { return MD4_Update(ctx->md_data,data,count); }
+
+static int final(EVP_MD_CTX *ctx,unsigned char *md)
+       { return MD4_Final(md,ctx->md_data); }
 
 static const EVP_MD md4_md=
        {
        NID_md4,
-       0,
+       NID_md4WithRSAEncryption,
        MD4_DIGEST_LENGTH,
-       MD4_Init,
-       MD4_Update,
-       MD4_Final,
+       0,
+       init,
+       update,
+       final,
+       NULL,
+       NULL,
        EVP_PKEY_RSA_method,
        MD4_CBLOCK,
        sizeof(EVP_MD *)+sizeof(MD4_CTX),