summaryrefslogtreecommitdiffstats
path: root/crypto/evp/c_alld.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-08-14 14:05:53 +0000
committerRichard Levitte <levitte@openssl.org>2000-08-14 14:05:53 +0000
commit3009458e2f63b84e9631dfbf8b5c7cb38b2b283c (patch)
treeb115b61e15485ab1dc8f250e8a996cb52117c788 /crypto/evp/c_alld.c
parent5ce42a7e68956b313bc98e85e843d561fb06b6e9 (diff)
MD4 implemented. Assar Westerlund provided the digest code itself and the test utility, I added the bits to get a EVP interface, the command line utility and the speed test
Diffstat (limited to 'crypto/evp/c_alld.c')
-rw-r--r--crypto/evp/c_alld.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/evp/c_alld.c b/crypto/evp/c_alld.c
index febe51a3ee..bbf059eb85 100644
--- a/crypto/evp/c_alld.c
+++ b/crypto/evp/c_alld.c
@@ -67,6 +67,9 @@ void OpenSSL_add_all_digests(void)
#ifndef NO_MD2
EVP_add_digest(EVP_md2());
#endif
+#ifndef NO_MD4
+ EVP_add_digest(EVP_md4());
+#endif
#ifndef NO_MD5
EVP_add_digest(EVP_md5());
EVP_add_digest_alias(SN_md5,"ssl2-md5");