diff options
author | Richard Levitte <levitte@openssl.org> | 2000-08-14 16:05:53 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-08-14 16:05:53 +0200 |
commit | 3009458e2f63b84e9631dfbf8b5c7cb38b2b283c (patch) | |
tree | b115b61e15485ab1dc8f250e8a996cb52117c788 /crypto/evp/c_alld.c | |
parent | Memory leaks fix. It now looks like all memory leaks, at least around (diff) | |
download | openssl-3009458e2f63b84e9631dfbf8b5c7cb38b2b283c.tar.xz openssl-3009458e2f63b84e9631dfbf8b5c7cb38b2b283c.zip |
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.c | 3 |
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"); |