summaryrefslogtreecommitdiffstats
path: root/crypto/evp/c_allc.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2015-02-11 20:30:13 +0100
committerAndy Polyakov <appro@openssl.org>2015-02-11 20:30:13 +0100
commitdda8199922f9d52087d2c41b22a61eb4f9671385 (patch)
treea37502300ee9b59059f292b75a5e5a531383d0f7 /crypto/evp/c_allc.c
parentc79e17731f462d6d42b917027a7085c0f59a2214 (diff)
Add Camellia CTR mode.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/evp/c_allc.c')
-rw-r--r--crypto/evp/c_allc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/evp/c_allc.c b/crypto/evp/c_allc.c
index 174a419883..7ae36d7da6 100644
--- a/crypto/evp/c_allc.c
+++ b/crypto/evp/c_allc.c
@@ -245,5 +245,8 @@ void OpenSSL_add_all_ciphers(void)
EVP_add_cipher(EVP_camellia_256_ofb());
EVP_add_cipher_alias(SN_camellia_256_cbc, "CAMELLIA256");
EVP_add_cipher_alias(SN_camellia_256_cbc, "camellia256");
+ EVP_add_cipher(EVP_camellia_128_ctr());
+ EVP_add_cipher(EVP_camellia_192_ctr());
+ EVP_add_cipher(EVP_camellia_256_ctr());
#endif
}