diff options
author | Damien Miller <djm@mindrot.org> | 2014-08-19 03:14:36 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-08-19 03:14:36 +0200 |
commit | 2f3d1e7fb2eabd3cfbfd8d0f7bdd2f9a1888690b (patch) | |
tree | 94ec0799194eb0741c49e09fd00600eecfced368 /myproposal.h | |
parent | - (djm) [serverloop.c] Fix syntax error on Cygwin; from Corinna Vinschen (diff) | |
download | openssh-2f3d1e7fb2eabd3cfbfd8d0f7bdd2f9a1888690b.tar.xz openssh-2f3d1e7fb2eabd3cfbfd8d0f7bdd2f9a1888690b.zip |
- (djm) [myproposal.h] Make curve25519 KEX dependent on
HAVE_EVP_SHA256 instead of OPENSSL_HAS_ECC.
Diffstat (limited to 'myproposal.h')
-rw-r--r-- | myproposal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myproposal.h b/myproposal.h index 32d0f14b5..b35b2b8bd 100644 --- a/myproposal.h +++ b/myproposal.h @@ -78,7 +78,7 @@ #endif #ifdef WITH_OPENSSL -# ifdef OPENSSL_HAS_ECC +# ifdef HAVE_EVP_SHA256 # define KEX_CURVE25519_METHODS "curve25519-sha256@libssh.org," # else # define KEX_CURVE25519_METHODS "" |