Add RC4 support to OpenBSD.
[openssl.git] / crypto / evp / m_mdc2.c
index 64a853eb7f2cdf04208a092a6d13779bd593367c..f22b2cd5e988c036373fad716af3a5fd59baf851 100644 (file)
  * [including the GNU Public Licence.]
  */
 
+#ifndef OPENSSL_NO_MDC2
 #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>
+#include <openssl/mdc2.h>
 
-static EVP_MD mdc2_md=
+static const EVP_MD mdc2_md=
        {
        NID_mdc2,
        NID_mdc2WithRSA,
@@ -75,7 +77,8 @@ static EVP_MD mdc2_md=
        sizeof(EVP_MD *)+sizeof(MDC2_CTX),
        };
 
-EVP_MD *EVP_mdc2()
+const EVP_MD *EVP_mdc2(void)
        {
        return(&mdc2_md);
        }
+#endif