summaryrefslogtreecommitdiffstats
path: root/crypto/evp/c_allc.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2013-05-13 22:49:58 +0200
committerAndy Polyakov <appro@openssl.org>2013-05-13 22:49:58 +0200
commit8a97a33063d93be1130b762daefd729346af4d29 (patch)
tree30efab281b7fb89db07760a02d349dd7fd39761d /crypto/evp/c_allc.c
parent22de0e6583b7f8764e383cf818db45863281eeec (diff)
Add AES-SHA256 stitch.
Diffstat (limited to 'crypto/evp/c_allc.c')
-rw-r--r--crypto/evp/c_allc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/evp/c_allc.c b/crypto/evp/c_allc.c
index 6a39d7a5d0..1e3a89e5a4 100644
--- a/crypto/evp/c_allc.c
+++ b/crypto/evp/c_allc.c
@@ -202,6 +202,10 @@ void OpenSSL_add_all_ciphers(void)
EVP_add_cipher(EVP_aes_128_cbc_hmac_sha1());
EVP_add_cipher(EVP_aes_256_cbc_hmac_sha1());
#endif
+#if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA256)
+ EVP_add_cipher(EVP_aes_128_cbc_hmac_sha256());
+ EVP_add_cipher(EVP_aes_256_cbc_hmac_sha256());
+#endif
#endif
#ifndef OPENSSL_NO_CAMELLIA