summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorappro <appro>2011-10-18 07:53:50 +0000
committerappro <appro>2011-10-18 07:53:50 +0000
commita27762b788a2df74350e06f2e99f79b9de9ecc13 (patch)
tree7abc436b55a9a7c83a50ebc11c065ba9a49e19b8 /crypto
parent0f4b806a71a3c7551dca5a504d4e904c6f134ecf (diff)
downloadopenssl-a27762b788a2df74350e06f2e99f79b9de9ecc13.tar.gz
c_allc.c: add aes-xts to loop.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/evp/c_allc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/evp/c_allc.c b/crypto/evp/c_allc.c
index 8765cfbf9..2a45d435e 100644
--- a/crypto/evp/c_allc.c
+++ b/crypto/evp/c_allc.c
@@ -171,6 +171,7 @@ void OpenSSL_add_all_ciphers(void)
EVP_add_cipher(EVP_aes_128_ofb());
EVP_add_cipher(EVP_aes_128_ctr());
EVP_add_cipher(EVP_aes_128_gcm());
+ EVP_add_cipher(EVP_aes_128_xts());
EVP_add_cipher_alias(SN_aes_128_cbc,"AES128");
EVP_add_cipher_alias(SN_aes_128_cbc,"aes128");
EVP_add_cipher(EVP_aes_192_ecb());
@@ -191,6 +192,7 @@ void OpenSSL_add_all_ciphers(void)
EVP_add_cipher(EVP_aes_256_ofb());
EVP_add_cipher(EVP_aes_256_ctr());
EVP_add_cipher(EVP_aes_256_gcm());
+ EVP_add_cipher(EVP_aes_256_xts());
EVP_add_cipher_alias(SN_aes_256_cbc,"AES256");
EVP_add_cipher_alias(SN_aes_256_cbc,"aes256");
#if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA1)