From: Ben Laurie Date: Tue, 4 Jun 2013 14:14:18 +0000 (+0100) Subject: Missing prototypes. X-Git-Tag: OpenSSL_1_0_2-beta1~349 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e3120586fb0852ccb7bf35d1b578134d6ccb9f01;p=oweals%2Fopenssl.git Missing prototypes. --- diff --git a/crypto/evp/evp.h b/crypto/evp/evp.h index 3a2c05ddd4..1cf1da2fea 100644 --- a/crypto/evp/evp.h +++ b/crypto/evp/evp.h @@ -813,10 +813,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);