From: Ben Laurie Date: Tue, 4 Jun 2013 14:14:18 +0000 (+0100) Subject: Missing prototypes. X-Git-Tag: master-post-reformat~1311 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b25b8417a7dcbe3ddbf6c7c34c0453b187eab093;p=oweals%2Fopenssl.git Missing prototypes. --- 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);