diff options
author | des <des@FreeBSD.org> | 2014-04-20 11:17:44 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2014-04-20 11:17:44 +0000 |
commit | 53f498cc9d8f52b83fafd5824b675a3c5c37414f (patch) | |
tree | 092a363fc040f88f2d001cdbfa15473f3fdab3ed /compat.h | |
parent | ab9e0bc08282397f61df5d0ea89a81a2322ec040 (diff) | |
download | FreeBSD-src-53f498cc9d8f52b83fafd5824b675a3c5c37414f.zip FreeBSD-src-53f498cc9d8f52b83fafd5824b675a3c5c37414f.tar.gz |
Apply upstream patch for EC calculation bug that breaks EC key exchange
about one out of 512 times.
Diffstat (limited to 'compat.h')
-rw-r--r-- | compat.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -59,6 +59,7 @@ #define SSH_BUG_RFWD_ADDR 0x02000000 #define SSH_NEW_OPENSSH 0x04000000 #define SSH_BUG_DYNAMIC_RPORT 0x08000000 +#define SSH_BUG_CURVE25519PAD 0x10000000 void enable_compat13(void); void enable_compat20(void); @@ -66,6 +67,7 @@ void compat_datafellows(const char *); int proto_spec(const char *); char *compat_cipher_proposal(char *); char *compat_pkalg_proposal(char *); +char *compat_kex_proposal(char *); extern int compat13; extern int compat20; |