aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2014-11-20 13:28:48 +0000
committerDr. Stephen Henson <steve@openssl.org>2015-11-24 19:18:44 +0000
commit2f142ada2c1f04c96c0c3db3ee3b6425934ad83b (patch)
tree8f7875e7e5bbf6c2accf66cfd3f68bee78cb37fb /include
parent63eb10a07ee29a312e50a227f5b3a290b1ad22b4 (diff)
downloadopenssl-2f142ada2c1f04c96c0c3db3ee3b6425934ad83b.tar.gz
Add MD5+SHA1
Add digest combining MD5 and SHA1. This is used by RSA signatures for TLS 1.1 and earlier. Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/evp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/openssl/evp.h b/include/openssl/evp.h
index 15796c01c6..1806f66422 100644
--- a/include/openssl/evp.h
+++ b/include/openssl/evp.h
@@ -766,6 +766,7 @@ const EVP_MD *EVP_md4(void);
# endif
# ifndef OPENSSL_NO_MD5
const EVP_MD *EVP_md5(void);
+const EVP_MD *EVP_md5_sha1(void);
# endif
const EVP_MD *EVP_sha1(void);
const EVP_MD *EVP_dss1(void);