| OLD | NEW |
| 1 /* crypto/evp/c_allc.c */ | 1 /* crypto/evp/c_allc.c */ |
| 2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 3 * All rights reserved. | 3 * All rights reserved. |
| 4 * | 4 * |
| 5 * This package is an SSL implementation written | 5 * This package is an SSL implementation written |
| 6 * by Eric Young (eay@cryptsoft.com). | 6 * by Eric Young (eay@cryptsoft.com). |
| 7 * The implementation was written so as to conform with Netscapes SSL. | 7 * The implementation was written so as to conform with Netscapes SSL. |
| 8 * | 8 * |
| 9 * This library is free for commercial and non-commercial use as long as | 9 * This library is free for commercial and non-commercial use as long as |
| 10 * the following conditions are aheared to. The following conditions | 10 * the following conditions are aheared to. The following conditions |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 EVP_add_cipher_alias(SN_camellia_192_cbc,"camellia192"); | 214 EVP_add_cipher_alias(SN_camellia_192_cbc,"camellia192"); |
| 215 EVP_add_cipher(EVP_camellia_256_ecb()); | 215 EVP_add_cipher(EVP_camellia_256_ecb()); |
| 216 EVP_add_cipher(EVP_camellia_256_cbc()); | 216 EVP_add_cipher(EVP_camellia_256_cbc()); |
| 217 EVP_add_cipher(EVP_camellia_256_cfb()); | 217 EVP_add_cipher(EVP_camellia_256_cfb()); |
| 218 EVP_add_cipher(EVP_camellia_256_cfb1()); | 218 EVP_add_cipher(EVP_camellia_256_cfb1()); |
| 219 EVP_add_cipher(EVP_camellia_256_cfb8()); | 219 EVP_add_cipher(EVP_camellia_256_cfb8()); |
| 220 EVP_add_cipher(EVP_camellia_256_ofb()); | 220 EVP_add_cipher(EVP_camellia_256_ofb()); |
| 221 EVP_add_cipher_alias(SN_camellia_256_cbc,"CAMELLIA256"); | 221 EVP_add_cipher_alias(SN_camellia_256_cbc,"CAMELLIA256"); |
| 222 EVP_add_cipher_alias(SN_camellia_256_cbc,"camellia256"); | 222 EVP_add_cipher_alias(SN_camellia_256_cbc,"camellia256"); |
| 223 #endif | 223 #endif |
| 224 | |
| 225 PKCS12_PBE_add(); | |
| 226 PKCS5_PBE_add(); | |
| 227 } | 224 } |
| OLD | NEW |