diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2018-12-26 15:11:05 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2018-12-26 15:11:05 +0000 |
commit | e12d3163209e0951eeb7d3174dcf45e369092016 (patch) | |
tree | 0e4a3146578945760c0fa37b53a6b5d60371d233 /lib/libcrypto | |
parent | a13891425a2376d696b633b61d9eb266798a019f (diff) |
Make AES CCM available in tables.
Omission reported by reyk and Alice Wonder.
ok bcook jsing
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/evp/c_all.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libcrypto/evp/c_all.c b/lib/libcrypto/evp/c_all.c index 85322d90e86..5ed55f67f61 100644 --- a/lib/libcrypto/evp/c_all.c +++ b/lib/libcrypto/evp/c_all.c @@ -1,4 +1,4 @@ -/* $OpenBSD: c_all.c,v 1.23 2018/11/11 07:07:44 tb Exp $ */ +/* $OpenBSD: c_all.c,v 1.24 2018/12/26 15:11:04 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -152,6 +152,7 @@ OpenSSL_add_all_ciphers_internal(void) #ifndef OPENSSL_NO_AES EVP_add_cipher(EVP_aes_128_ecb()); EVP_add_cipher(EVP_aes_128_cbc()); + EVP_add_cipher(EVP_aes_128_ccm()); EVP_add_cipher(EVP_aes_128_cfb()); EVP_add_cipher(EVP_aes_128_cfb1()); EVP_add_cipher(EVP_aes_128_cfb8()); @@ -163,6 +164,7 @@ OpenSSL_add_all_ciphers_internal(void) EVP_add_cipher_alias(SN_aes_128_cbc, "aes128"); EVP_add_cipher(EVP_aes_192_ecb()); EVP_add_cipher(EVP_aes_192_cbc()); + EVP_add_cipher(EVP_aes_192_ccm()); EVP_add_cipher(EVP_aes_192_cfb()); EVP_add_cipher(EVP_aes_192_cfb1()); EVP_add_cipher(EVP_aes_192_cfb8()); @@ -173,6 +175,7 @@ OpenSSL_add_all_ciphers_internal(void) EVP_add_cipher_alias(SN_aes_192_cbc, "aes192"); EVP_add_cipher(EVP_aes_256_ecb()); EVP_add_cipher(EVP_aes_256_cbc()); + EVP_add_cipher(EVP_aes_256_ccm()); EVP_add_cipher(EVP_aes_256_cfb()); EVP_add_cipher(EVP_aes_256_cfb1()); EVP_add_cipher(EVP_aes_256_cfb8()); |