diff common-algo.c @ 150:82fcf3185616

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/
author Matt Johnston <matt@ucc.asn.au>
date Mon, 20 Dec 2004 14:24:57 +0000
parents e3adf4cf5465
children 0cfba3034be5
line wrap: on
line diff
--- a/common-algo.c	Mon Dec 20 13:11:15 2004 +0000
+++ b/common-algo.c	Mon Dec 20 14:24:57 2004 +0000
@@ -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 @@
 
 	const struct _cipher_descriptor *regciphers[] = {
 #ifdef DROPBEAR_AES128_CBC
-		&rijndael_desc,
+		&aes_desc,
 #endif
 #ifdef DROPBEAR_BLOWFISH_CBC
 		&blowfish_desc,