summaryrefslogtreecommitdiffstats
path: root/kexecdhs.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-09-10 11:39:26 +1000
committerDamien Miller <djm@mindrot.org>2010-09-10 11:39:26 +1000
commit6af914a15c0c33e8b5bab5ca61919b8562ff1db9 (patch)
treeb87546d8a88a05e6fd600cbb2b8c0b132278cb10 /kexecdhs.c
parent041ab7c1e7d6514ed84a539a767f79ffb356e807 (diff)
- (djm) [authfd.c authfile.c bufec.c buffer.h configure.ac kex.h kexecdh.c]
[kexecdhc.c kexecdhs.c key.c key.h myproposal.h packet.c readconf.c] [ssh-agent.c ssh-ecdsa.c ssh-keygen.c ssh.c] Disable ECDH and ECDSA on platforms that don't have the requisite OpenSSL support. ok dtucker@
Diffstat (limited to 'kexecdhs.c')
-rw-r--r--kexecdhs.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/kexecdhs.c b/kexecdhs.c
index e49a0ef3..d2c3feb0 100644
--- a/kexecdhs.c
+++ b/kexecdhs.c
@@ -30,8 +30,6 @@
#include <string.h>
#include <signal.h>
-#include <openssl/ecdh.h>
-
#include "xmalloc.h"
#include "buffer.h"
#include "key.h"
@@ -46,6 +44,10 @@
#endif
#include "monitor_wrap.h"
+#ifdef OPENSSL_HAS_ECC
+
+#include <openssl/ecdh.h>
+
void
kexecdh_server(Kex *kex)
{
@@ -161,3 +163,10 @@ kexecdh_server(Kex *kex)
BN_clear_free(shared_secret);
kex_finish(kex);
}
+#else /* OPENSSL_HAS_ECC */
+void
+kexecdh_server(Kex *kex)
+{
+ fatal("ECC support is not enabled");
+}
+#endif /* OPENSSL_HAS_ECC */