The unified diff between revisions [685c1004..] and [88ed2b94..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'common-algo.c'

#
#
# patch "common-algo.c"
#  from [2d5cf5bffa626ee7d0e560e0e5c4005c33d57d71]
#    to [505faaffcd146b0d75e78df4ef33dcbbb6367d2b]
#
============================================================
--- common-algo.c	2d5cf5bffa626ee7d0e560e0e5c4005c33d57d71
+++ common-algo.c	505faaffcd146b0d75e78df4ef33dcbbb6367d2b
@@ -103,6 +103,9 @@ algo_type sshciphers[] = {
 #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 @@ algo_type sshhashes[] = {
 #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}
 };