- (djm) [myproposal.h] Fix reversed OPENSSL_VERSION_NUMBER test and bad
#define that was causing diffie-hellman-group-exchange-sha256 to be incorrectly disabled
This commit is contained in:
parent
cbaf8e6ec1
commit
9b16086e74
|
@ -7,6 +7,9 @@
|
||||||
gcc warning on platforms where it defaults to int
|
gcc warning on platforms where it defaults to int
|
||||||
- (djm) [regress/Makefile] add a few more generated files to the clean
|
- (djm) [regress/Makefile] add a few more generated files to the clean
|
||||||
target
|
target
|
||||||
|
- (djm) [myproposal.h] Fix reversed OPENSSL_VERSION_NUMBER test and bad
|
||||||
|
#define that was causing diffie-hellman-group-exchange-sha256 to be
|
||||||
|
incorrectly disabled
|
||||||
|
|
||||||
20110212
|
20110212
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
|
|
|
@ -46,9 +46,9 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Old OpenSSL doesn't support what we need for DHGEX-sha256 */
|
/* Old OpenSSL doesn't support what we need for DHGEX-sha256 */
|
||||||
#if OPENSSL_VERSION_NUMBER < 0x00907000L
|
#if OPENSSL_VERSION_NUMBER >= 0x00907000L
|
||||||
# define KEX_SHA256_METHODS \
|
# define KEX_SHA256_METHODS \
|
||||||
"diffie-hellman-group-exchange-sha1,"
|
"diffie-hellman-group-exchange-sha256,"
|
||||||
#else
|
#else
|
||||||
# define KEX_SHA256_METHODS
|
# define KEX_SHA256_METHODS
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue