Add AES-NI+SHA256 stitch registrations (from master).

This commit is contained in:
Andy Polyakov
2014-02-02 00:05:02 +01:00
parent eb6af20d2e
commit 9071b36d9a
7 changed files with 94 additions and 51 deletions

View File

@@ -94,6 +94,10 @@ int SSL_library_init(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