aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/evp/c_allc.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-10-14 20:09:54 +0000
committerRichard Levitte <levitte@openssl.org>2000-10-14 20:09:54 +0000
commit3ab56511120b7a67ed4e4dbac9d60e5d1520a453 (patch)
tree399ad045f57838ba50a40a57f9834d7a98f6af4a /crypto/evp/c_allc.c
parent82ce0b2308027b337f0d8bea973eca5f818aaceb (diff)
downloadopenssl-3ab56511120b7a67ed4e4dbac9d60e5d1520a453.tar.gz
The experimental Rijndael code moved to the main trunk.
make update done.
Diffstat (limited to 'crypto/evp/c_allc.c')
-rw-r--r--crypto/evp/c_allc.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/crypto/evp/c_allc.c b/crypto/evp/c_allc.c
index f24d3756c9..bb78c68160 100644
--- a/crypto/evp/c_allc.c
+++ b/crypto/evp/c_allc.c
@@ -64,6 +64,8 @@
void OpenSSL_add_all_ciphers(void)
{
+ int i,j;
+
#ifndef NO_DES
EVP_add_cipher(EVP_des_cfb());
EVP_add_cipher(EVP_des_ede_cfb());
@@ -144,6 +146,12 @@ void OpenSSL_add_all_ciphers(void)
EVP_add_cipher_alias(SN_rc5_cbc,"rc5");
EVP_add_cipher_alias(SN_rc5_cbc,"RC5");
#endif
+
+#ifndef NO_RIJNDAEL
+ for(i=0 ; i < 3 ; ++i)
+ for(j=0 ; j < 3 ; ++j)
+ EVP_add_cipher(EVP_rijndael_ecb(i,j));
+#endif
PKCS12_PBE_add();
PKCS5_PBE_add();
}