summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/c_allc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/evp/c_allc.c')
-rw-r--r--src/lib/libcrypto/evp/c_allc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libcrypto/evp/c_allc.c b/src/lib/libcrypto/evp/c_allc.c
index c5f9268378..7054d8125d 100644
--- a/src/lib/libcrypto/evp/c_allc.c
+++ b/src/lib/libcrypto/evp/c_allc.c
@@ -71,8 +71,6 @@ void OpenSSL_add_all_ciphers(void)
71 EVP_add_cipher(EVP_des_cfb8()); 71 EVP_add_cipher(EVP_des_cfb8());
72 EVP_add_cipher(EVP_des_ede_cfb()); 72 EVP_add_cipher(EVP_des_ede_cfb());
73 EVP_add_cipher(EVP_des_ede3_cfb()); 73 EVP_add_cipher(EVP_des_ede3_cfb());
74 EVP_add_cipher(EVP_des_ede3_cfb1());
75 EVP_add_cipher(EVP_des_ede3_cfb8());
76 74
77 EVP_add_cipher(EVP_des_ofb()); 75 EVP_add_cipher(EVP_des_ofb());
78 EVP_add_cipher(EVP_des_ede_ofb()); 76 EVP_add_cipher(EVP_des_ede_ofb());
@@ -221,4 +219,7 @@ void OpenSSL_add_all_ciphers(void)
221 EVP_add_cipher_alias(SN_camellia_256_cbc,"CAMELLIA256"); 219 EVP_add_cipher_alias(SN_camellia_256_cbc,"CAMELLIA256");
222 EVP_add_cipher_alias(SN_camellia_256_cbc,"camellia256"); 220 EVP_add_cipher_alias(SN_camellia_256_cbc,"camellia256");
223#endif 221#endif
222
223 PKCS12_PBE_add();
224 PKCS5_PBE_add();
224 } 225 }