From 8f8855cff0e106be947544eef80bc09fca52482b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Thu, 11 Apr 2002 22:04:40 +0000 Subject: [PATCH] Knowledgeable persons assure me that RSA is preferable to DSA and that we should transition away from DSA. --- crypto/openssh/servconf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crypto/openssh/servconf.c b/crypto/openssh/servconf.c index 8ba194d77121..17ded22c112e 100644 --- a/crypto/openssh/servconf.c +++ b/crypto/openssh/servconf.c @@ -123,6 +123,8 @@ fill_default_server_options(ServerOptions *options) options->host_key_files[options->num_host_key_files++] = _PATH_HOST_KEY_FILE; if (options->protocol & SSH_PROTO_2) { + options->host_key_files[options->num_host_key_files++] = + _PATH_HOST_RSA_KEY_FILE; options->host_key_files[options->num_host_key_files++] = _PATH_HOST_DSA_KEY_FILE; }