diff options
author | Colin Watson <cjwatson@debian.org> | 2017-01-16 13:53:04 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2017-08-22 16:19:30 +0100 |
commit | 12b741fba8a8430c32b8b48e5427504e97d48625 (patch) | |
tree | e538fde6fe8db56fe8d639dac550a2feec9e0187 /servconf.c | |
parent | 989ce98a71063acb2a13f35977b962125c07d1b2 (diff) |
Remove ssh_host_dsa_key from HostKey default
The client no longer accepts DSA host keys, and servers using the
default HostKey setting should have better host keys available.
Bug: https://bugzilla.mindrot.org/show_bug.cgi?id=2662
Bug-Debian: https://bugs.debian.org/850614
Last-Update: 2017-01-16
Patch-Name: no-dsa-host-key-by-default.patch
Diffstat (limited to 'servconf.c')
-rw-r--r-- | servconf.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/servconf.c b/servconf.c index a391cf4b2..1a7a5f182 100644 --- a/servconf.c +++ b/servconf.c | |||
@@ -204,8 +204,6 @@ fill_default_server_options(ServerOptions *options) | |||
204 | /* fill default hostkeys for protocols */ | 204 | /* fill default hostkeys for protocols */ |
205 | options->host_key_files[options->num_host_key_files++] = | 205 | options->host_key_files[options->num_host_key_files++] = |
206 | _PATH_HOST_RSA_KEY_FILE; | 206 | _PATH_HOST_RSA_KEY_FILE; |
207 | options->host_key_files[options->num_host_key_files++] = | ||
208 | _PATH_HOST_DSA_KEY_FILE; | ||
209 | #ifdef OPENSSL_HAS_ECC | 207 | #ifdef OPENSSL_HAS_ECC |
210 | options->host_key_files[options->num_host_key_files++] = | 208 | options->host_key_files[options->num_host_key_files++] = |
211 | _PATH_HOST_ECDSA_KEY_FILE; | 209 | _PATH_HOST_ECDSA_KEY_FILE; |