aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2017-07-16 23:40:14 +0200
committerAndy Polyakov <appro@openssl.org>2017-07-25 21:40:23 +0200
commit91ce87c0d5675329614dd5b56ce67670a6aaa387 (patch)
treef11552b82a03d9ee345356088a443e647943840a /include
parentc363ce55f2a04124519e504bbe1706f858260805 (diff)
downloadopenssl-91ce87c0d5675329614dd5b56ce67670a6aaa387.tar.gz
Add evp/m_sha3.c.
Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3943)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/evp.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/openssl/evp.h b/include/openssl/evp.h
index 2531d0012f..f935e99eaf 100644
--- a/include/openssl/evp.h
+++ b/include/openssl/evp.h
@@ -695,6 +695,12 @@ const EVP_MD *EVP_sha224(void);
const EVP_MD *EVP_sha256(void);
const EVP_MD *EVP_sha384(void);
const EVP_MD *EVP_sha512(void);
+const EVP_MD *EVP_sha3_224(void);
+const EVP_MD *EVP_sha3_256(void);
+const EVP_MD *EVP_sha3_384(void);
+const EVP_MD *EVP_sha3_512(void);
+const EVP_MD *EVP_shake128(void);
+const EVP_MD *EVP_shake256(void);
# ifndef OPENSSL_NO_MDC2
const EVP_MD *EVP_mdc2(void);
# endif