aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/evp/evp.h
diff options
context:
space:
mode:
authorBen Laurie <ben@links.org>2013-06-04 15:14:18 +0100
committerBen Laurie <ben@links.org>2013-06-04 16:34:45 +0100
commitb25b8417a7dcbe3ddbf6c7c34c0453b187eab093 (patch)
treef89993bdbecf44c96bf594e70354c08fe577dff2 /crypto/evp/evp.h
parentb69437e1e5cdf9c6dfda17cc238f87f730b198ac (diff)
downloadopenssl-b25b8417a7dcbe3ddbf6c7c34c0453b187eab093.tar.gz
Missing prototypes.
Diffstat (limited to 'crypto/evp/evp.h')
-rw-r--r--crypto/evp/evp.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/crypto/evp/evp.h b/crypto/evp/evp.h
index 50b568250b..0193222f19 100644
--- a/crypto/evp/evp.h
+++ b/crypto/evp/evp.h
@@ -841,10 +841,14 @@ const EVP_CIPHER *EVP_aes_256_ctr(void);
const EVP_CIPHER *EVP_aes_256_ccm(void);
const EVP_CIPHER *EVP_aes_256_gcm(void);
const EVP_CIPHER *EVP_aes_256_xts(void);
-#if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA1)
+# if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA1)
const EVP_CIPHER *EVP_aes_128_cbc_hmac_sha1(void);
const EVP_CIPHER *EVP_aes_256_cbc_hmac_sha1(void);
-#endif
+# endif
+# ifndef OPENSSL_NO_SHA256
+const EVP_CIPHER *EVP_aes_128_cbc_hmac_sha256(void);
+const EVP_CIPHER *EVP_aes_256_cbc_hmac_sha256(void);
+# endif
#endif
#ifndef OPENSSL_NO_CAMELLIA
const EVP_CIPHER *EVP_camellia_128_ecb(void);