diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-04-03 00:43:31 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-04-03 00:43:31 +0800 |
commit | cbd3d5e3a535111b4cd6736d6aff432a252845d2 (patch) | |
tree | f71b44acb3546843d4d1d4343428bbff1df28e5b /sysoptions.h | |
parent | 78fbed8c3eda1d7f3e0ffa41b54cd3c6ae31a0fe (diff) |
Put some #ifdef options around first-follows options in case they
need to be disabled
--HG--
branch : kexguess
Diffstat (limited to 'sysoptions.h')
-rw-r--r-- | sysoptions.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sysoptions.h b/sysoptions.h index 4d648c1..22c2a4d 100644 --- a/sysoptions.h +++ b/sysoptions.h @@ -23,6 +23,15 @@ #define AUTH_TIMEOUT 300 /* we choose 5 minutes */ #endif +/* A client should try and send an initial key exchange packet guessing + * the algorithm that will match - saves a round trip connecting, has little + * overhead if the guess was "wrong". */ +#define USE_KEX_FIRST_FOLLOWS +/* Use protocol extension to allow "first follows" to succeed more frequently. + * This is currently Dropbear-specific but will gracefully fallback when connecting + * to other implementations. */ +#define USE_KEXGUESS2 + /* Minimum key sizes for DSS and RSA */ #ifndef MIN_DSS_KEYLEN #define MIN_DSS_KEYLEN 512 |