diff common-algo.c @ 292:64abb124763d insecure-nocrypto

propagate from branch 'au.asn.ucc.matt.dropbear' (head 7ad1775ed65e75dbece27fe6b65bf1a234db386a) to branch 'au.asn.ucc.matt.dropbear.insecure-nocrypto' (head 88ed2b94d9bfec9a4f661caf592ed01da5eb3b6a)
author Matt Johnston <matt@ucc.asn.au>
date Fri, 10 Mar 2006 06:30:52 +0000
parents 89ace56293f6 29afa62b5450
children 582cb38e4eb5
line wrap: on
line diff
--- a/common-algo.c	Thu Mar 09 15:03:22 2006 +0000
+++ b/common-algo.c	Fri Mar 10 06:30:52 2006 +0000
@@ -103,6 +103,9 @@
 #ifdef DROPBEAR_BLOWFISH_CBC
 	{"blowfish-cbc", 0, (void*)&dropbear_blowfish, 1},
 #endif
+#ifdef DROPBEAR_NONE_CIPHER
+	{"none", 0, (void*)&dropbear_nocipher, 1},
+#endif
 	{NULL, 0, NULL, 0}
 };
 
@@ -116,6 +119,9 @@
 #ifdef DROPBEAR_MD5_HMAC
 	{"hmac-md5", 0, (void*)&dropbear_md5, 1},
 #endif
+#ifdef DROPBEAR_NONE_INTEGRITY
+	{"none", 0, (void*)&dropbear_nohash, 1},
+#endif
 	{NULL, 0, NULL, 0}
 };