summaryrefslogtreecommitdiff
path: root/crypto/evp/evp.h
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/evp.h
parent5ce42a7e68956b313bc98e85e843d561fb06b6e9 (diff)
downloadopenssl-new-3009458e2f63b84e9631dfbf8b5c7cb38b2b283c.tar.gz
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/evp.h')
-rw-r--r--crypto/evp/evp.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/crypto/evp/evp.h b/crypto/evp/evp.h
index f3b2b7456a..f5b938d2f8 100644
--- a/crypto/evp/evp.h
+++ b/crypto/evp/evp.h
@@ -73,6 +73,9 @@
#ifndef NO_MD2
#include <openssl/md2.h>
#endif
+#ifndef NO_MD4
+#include <openssl/md4.h>
+#endif
#ifndef NO_MD5
#include <openssl/md5.h>
#endif
@@ -309,6 +312,9 @@ typedef struct env_md_ctx_st
#ifndef NO_MD5
MD5_CTX md5;
#endif
+#ifndef NO_MD4
+ MD4_CTX md4;
+#endif
#ifndef NO_RIPEMD
RIPEMD160_CTX ripemd160;
#endif
@@ -607,6 +613,7 @@ void BIO_set_cipher(BIO *b,const EVP_CIPHER *c,unsigned char *k,
EVP_MD *EVP_md_null(void);
EVP_MD *EVP_md2(void);
+EVP_MD *EVP_md4(void);
EVP_MD *EVP_md5(void);
EVP_MD *EVP_sha(void);
EVP_MD *EVP_sha1(void);