diff options
author | Matt Johnston <matt@ucc.asn.au> | 2004-12-20 14:24:57 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2004-12-20 14:24:57 +0000 |
commit | 34445aa81960742691ef269b18c8db272b8449cc (patch) | |
tree | 0224a9d7257f7e4d30baaf7aa32efb1d9a7498fd /common-algo.c | |
parent | 42c691a051af521efa3cd74045eed7db33a38ca2 (diff) |
Cleaning out various dead wood found with -dead_strip
bignum.c: mptobytes now resides in dss.c
loginrec.c: remove lastlog code since it isn't used.
dbutil.c: removed obselete usingsyslog variable
channel.h: client channel type only defined for client compile
common-algo.c: s/rijndael/aes/
--HG--
extra : convert_revision : 411ea4e70506ecb0202376f94bcf2d330603d042
Diffstat (limited to 'common-algo.c')
-rw-r--r-- | common-algo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common-algo.c b/common-algo.c index e1d22e1..22cdc70 100644 --- a/common-algo.c +++ b/common-algo.c @@ -34,7 +34,7 @@ #ifdef DROPBEAR_AES128_CBC const struct dropbear_cipher dropbear_aes128 = - {&rijndael_desc, 16, 16}; + {&aes_desc, 16, 16}; #endif #ifdef DROPBEAR_BLOWFISH_CBC const struct dropbear_cipher dropbear_blowfish = @@ -127,7 +127,7 @@ void crypto_init() { const struct _cipher_descriptor *regciphers[] = { #ifdef DROPBEAR_AES128_CBC - &rijndael_desc, + &aes_desc, #endif #ifdef DROPBEAR_BLOWFISH_CBC &blowfish_desc, |