The unified diff between revisions [7ad1775e..] and [2b954d40..] 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 [a54999708e3805153b7f6857ce09f86ea3ad41e8]
# to [4db3bb3e661b2a1b4ba9c231158e66cee69881fd]
#
============================================================
--- common-algo.c a54999708e3805153b7f6857ce09f86ea3ad41e8
+++ common-algo.c 4db3bb3e661b2a1b4ba9c231158e66cee69881fd
@@ -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}
};