diff options
Diffstat (limited to 'src/lib/libcrypto/evp/c_allc.c')
-rw-r--r-- | src/lib/libcrypto/evp/c_allc.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/lib/libcrypto/evp/c_allc.c b/src/lib/libcrypto/evp/c_allc.c index fc96812365..7054d8125d 100644 --- a/src/lib/libcrypto/evp/c_allc.c +++ b/src/lib/libcrypto/evp/c_allc.c | |||
@@ -107,6 +107,15 @@ void OpenSSL_add_all_ciphers(void) | |||
107 | EVP_add_cipher_alias(SN_idea_cbc,"idea"); | 107 | EVP_add_cipher_alias(SN_idea_cbc,"idea"); |
108 | #endif | 108 | #endif |
109 | 109 | ||
110 | #ifndef OPENSSL_NO_SEED | ||
111 | EVP_add_cipher(EVP_seed_ecb()); | ||
112 | EVP_add_cipher(EVP_seed_cfb()); | ||
113 | EVP_add_cipher(EVP_seed_ofb()); | ||
114 | EVP_add_cipher(EVP_seed_cbc()); | ||
115 | EVP_add_cipher_alias(SN_seed_cbc,"SEED"); | ||
116 | EVP_add_cipher_alias(SN_seed_cbc,"seed"); | ||
117 | #endif | ||
118 | |||
110 | #ifndef OPENSSL_NO_RC2 | 119 | #ifndef OPENSSL_NO_RC2 |
111 | EVP_add_cipher(EVP_rc2_ecb()); | 120 | EVP_add_cipher(EVP_rc2_ecb()); |
112 | EVP_add_cipher(EVP_rc2_cfb()); | 121 | EVP_add_cipher(EVP_rc2_cfb()); |
@@ -183,6 +192,34 @@ void OpenSSL_add_all_ciphers(void) | |||
183 | EVP_add_cipher_alias(SN_aes_256_cbc,"AES256"); | 192 | EVP_add_cipher_alias(SN_aes_256_cbc,"AES256"); |
184 | EVP_add_cipher_alias(SN_aes_256_cbc,"aes256"); | 193 | EVP_add_cipher_alias(SN_aes_256_cbc,"aes256"); |
185 | #endif | 194 | #endif |
195 | |||
196 | #ifndef OPENSSL_NO_CAMELLIA | ||
197 | EVP_add_cipher(EVP_camellia_128_ecb()); | ||
198 | EVP_add_cipher(EVP_camellia_128_cbc()); | ||
199 | EVP_add_cipher(EVP_camellia_128_cfb()); | ||
200 | EVP_add_cipher(EVP_camellia_128_cfb1()); | ||
201 | EVP_add_cipher(EVP_camellia_128_cfb8()); | ||
202 | EVP_add_cipher(EVP_camellia_128_ofb()); | ||
203 | EVP_add_cipher_alias(SN_camellia_128_cbc,"CAMELLIA128"); | ||
204 | EVP_add_cipher_alias(SN_camellia_128_cbc,"camellia128"); | ||
205 | EVP_add_cipher(EVP_camellia_192_ecb()); | ||
206 | EVP_add_cipher(EVP_camellia_192_cbc()); | ||
207 | EVP_add_cipher(EVP_camellia_192_cfb()); | ||
208 | EVP_add_cipher(EVP_camellia_192_cfb1()); | ||
209 | EVP_add_cipher(EVP_camellia_192_cfb8()); | ||
210 | EVP_add_cipher(EVP_camellia_192_ofb()); | ||
211 | EVP_add_cipher_alias(SN_camellia_192_cbc,"CAMELLIA192"); | ||
212 | EVP_add_cipher_alias(SN_camellia_192_cbc,"camellia192"); | ||
213 | EVP_add_cipher(EVP_camellia_256_ecb()); | ||
214 | EVP_add_cipher(EVP_camellia_256_cbc()); | ||
215 | EVP_add_cipher(EVP_camellia_256_cfb()); | ||
216 | EVP_add_cipher(EVP_camellia_256_cfb1()); | ||
217 | EVP_add_cipher(EVP_camellia_256_cfb8()); | ||
218 | EVP_add_cipher(EVP_camellia_256_ofb()); | ||
219 | EVP_add_cipher_alias(SN_camellia_256_cbc,"CAMELLIA256"); | ||
220 | EVP_add_cipher_alias(SN_camellia_256_cbc,"camellia256"); | ||
221 | #endif | ||
222 | |||
186 | PKCS12_PBE_add(); | 223 | PKCS12_PBE_add(); |
187 | PKCS5_PBE_add(); | 224 | PKCS5_PBE_add(); |
188 | } | 225 | } |