Change the EVP_somecipher() and EVP_somedigest()
[openssl.git] / crypto / evp / m_md4.c
index 133745e8b7f192ea31c99c45052cf266cbb41b21..cf429aee5d5a712561488e6ee5fc9b5681532b14 100644 (file)
@@ -63,7 +63,7 @@
 #include <openssl/objects.h>
 #include <openssl/x509.h>
 
-static EVP_MD md4_md=
+static const EVP_MD md4_md=
        {
        NID_md4,
        0,
@@ -76,7 +76,7 @@ static EVP_MD md4_md=
        sizeof(EVP_MD *)+sizeof(MD4_CTX),
        };
 
-EVP_MD *EVP_md4(void)
+const EVP_MD *EVP_md4(void)
        {
        return(&md4_md);
        }