make update
[oweals/openssl.git] / crypto / evp / m_md2.c
index 8f95541c6a30af69cdf24574d88994ff3dc8ef37..e577d26411b6ddd6eb1430877c116e77de3d3949 100644 (file)
  * [including the GNU Public Licence.]
  */
 
-#ifndef OPENSSL_NO_MD2
 #include <stdio.h>
 #include "cryptlib.h"
+
+#ifndef OPENSSL_NO_MD2
+
 #include <openssl/evp.h>
 #include <openssl/objects.h>
 #include <openssl/x509.h>
 #include <openssl/md2.h>
+#include <openssl/rsa.h>
 
 static int init(EVP_MD_CTX *ctx)
        { return MD2_Init(ctx->md_data); }
@@ -83,6 +86,7 @@ static const EVP_MD md2_md=
        update,
        final,
        NULL,
+       NULL,
        EVP_PKEY_RSA_method,
        MD2_BLOCK,
        sizeof(EVP_MD *)+sizeof(MD2_CTX),