diff options
author | des <des@FreeBSD.org> | 2002-04-11 22:04:40 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-04-11 22:04:40 +0000 |
commit | 0264ee329669459ec472cd5f3f845d1865972bbf (patch) | |
tree | a28a4b9cec455505a875b344ebc8369e50cdb219 /crypto | |
parent | 114cb3e441ee04013327a2da0a1cb1da28fefb20 (diff) | |
download | FreeBSD-src-0264ee329669459ec472cd5f3f845d1865972bbf.zip FreeBSD-src-0264ee329669459ec472cd5f3f845d1865972bbf.tar.gz |
Knowledgeable persons assure me that RSA is preferable to DSA and that we
should transition away from DSA.
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssh/servconf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/openssh/servconf.c b/crypto/openssh/servconf.c index 8ba194d..17ded22 100644 --- a/crypto/openssh/servconf.c +++ b/crypto/openssh/servconf.c @@ -124,6 +124,8 @@ fill_default_server_options(ServerOptions *options) _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; } } |