commit | c9eb7eac86a3f07bf23b35b7ce24382e158056fc | [log] [tgz] |
---|---|---|
author | Adam Langley <agl@chromium.org> | Fri Aug 22 11:06:14 2014 -0700 |
committer | Adam Langley <agl@google.com> | Tue Aug 26 21:51:48 2014 +0000 |
tree | c6468a0a76286c9724929ab3888b9a73b821d747 | |
parent | 8da990677b852daff3f6e4a10d9c80c7b4822a06 [diff] [blame] |
Readd MD4. Sadly this is needed by wpa_supplicant for NTLM hashes. Change-Id: I1c362c676a11ee01f301ff6fbd33d0669396ea23 Reviewed-on: https://boringssl-review.googlesource.com/1620 Reviewed-by: Adam Langley <agl@google.com>
diff --git a/include/openssl/digest.h b/include/openssl/digest.h index 76d6677..291a548 100644 --- a/include/openssl/digest.h +++ b/include/openssl/digest.h
@@ -76,6 +76,7 @@ * The following functions return |EVP_MD| objects that implement the named hash * function. */ +OPENSSL_EXPORT const EVP_MD *EVP_md4(void); OPENSSL_EXPORT const EVP_MD *EVP_md5(void); OPENSSL_EXPORT const EVP_MD *EVP_sha1(void); OPENSSL_EXPORT const EVP_MD *EVP_sha224(void);