From fb7eab1fe95347e3dbc309cd7ed7dc0b30a4e09e Mon Sep 17 00:00:00 2001 From: Greg Alexander Date: Mon, 28 Dec 2020 22:58:34 -0500 Subject: [PATCH] Disable Blowfish, which is no longer supported by dropbear (but they failed to completely remove it, so it causes a compilation error if enabled instead of being ignored). --- dropbear/localoptions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dropbear/localoptions.h b/dropbear/localoptions.h index 7f9615f..3df9b32 100644 --- a/dropbear/localoptions.h +++ b/dropbear/localoptions.h @@ -83,7 +83,7 @@ much traffic. */ #define DROPBEAR_3DES 1 #define DROPBEAR_AES256 1 /* Compiling in Blowfish will add ~6kB to runtime heap memory usage */ -#define DROPBEAR_BLOWFISH 1 +//#define DROPBEAR_BLOWFISH 1 #define DROPBEAR_TWOFISH256 1 #define DROPBEAR_TWOFISH128 1