summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-09-24 22:11:14 +1000
committerDamien Miller <djm@mindrot.org>2010-09-24 22:11:14 +1000
commitd5f62bf280b0798d7009d4424594a648a4e887fb (patch)
tree5f18078ea61f6c5503dc4addfb2f17d13844692c /sshd.c
parent603134e077e667b4819effb0e121803842df621f (diff)
- djm@cvs.openbsd.org 2010/09/22 05:01:30
[kex.c kex.h kexecdh.c kexecdhc.c kexecdhs.c readconf.c readconf.h] [servconf.c servconf.h ssh_config.5 sshconnect2.c sshd.c sshd_config.5] add a KexAlgorithms knob to the client and server configuration to allow selection of which key exchange methods are used by ssh(1) and sshd(8) and their order of preference. ok markus@
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sshd.c b/sshd.c
index 7995f5a1d..5d4d14ae2 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshd.c,v 1.379 2010/08/31 12:33:38 djm Exp $ */ 1/* $OpenBSD: sshd.c,v 1.380 2010/09/22 05:01:29 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -2297,6 +2297,8 @@ do_ssh2_kex(void)
2297 myproposal[PROPOSAL_COMP_ALGS_CTOS] = 2297 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
2298 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none,zlib@openssh.com"; 2298 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none,zlib@openssh.com";
2299 } 2299 }
2300 if (options.kex_algorithms != NULL)
2301 myproposal[PROPOSAL_KEX_ALGS] = options.kex_algorithms;
2300 2302
2301 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types(); 2303 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
2302 2304