diff options
author | Matt Johnston <matt@ucc.asn.au> | 2009-07-24 13:49:07 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2009-07-24 13:49:07 +0000 |
commit | 8181d41bb508aeb6c335fe213d1d5e5412d583b4 (patch) | |
tree | 440a1236ef717347b3063a245193f76cc73066ef /options.h | |
parent | a996e61a2e6b8ba4fb101a50c950a661cb6d770c (diff) |
Disable Blowfish by default, it has inefficient key memory use
--HG--
extra : convert_revision : a37b8ae5fb524be221dbdfd71b4f35eb6a48565c
Diffstat (limited to 'options.h')
-rw-r--r-- | options.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -86,7 +86,8 @@ much traffic. */ #define DROPBEAR_AES128 #define DROPBEAR_3DES #define DROPBEAR_AES256 -#define DROPBEAR_BLOWFISH +/* Compiling in Blowfish will add ~6kB to runtime heap memory usage */ +/*#define DROPBEAR_BLOWFISH*/ #define DROPBEAR_TWOFISH256 #define DROPBEAR_TWOFISH128 |