diff options
Diffstat (limited to 'common-algo.c')
-rw-r--r-- | common-algo.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common-algo.c b/common-algo.c index 6ce1a37..8282360 100644 --- a/common-algo.c +++ b/common-algo.c @@ -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} }; |