From 4870ff1061b8ec5749448a097298880fdb2a3cf3 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Sat, 13 Aug 2016 15:39:12 +0200 Subject: [PATCH] ssh: deprecate DSA keys as per OpenSSH recommendation Also see: http://www.openssh.com/txt/release-7.0 --- src/etc/rc.sshd | 1 - 1 file changed, 1 deletion(-) diff --git a/src/etc/rc.sshd b/src/etc/rc.sshd index 9e9d3a00d..afb63b952 100755 --- a/src/etc/rc.sshd +++ b/src/etc/rc.sshd @@ -62,7 +62,6 @@ if (file_exists('/conf/sshd/ssh_host_rsa_key') && !file_exists("{$etc_ssh}/ssh_h $keys = array( /* .pub files are implied */ 'rsa' => 'ssh_host_rsa_key', - 'dsa' => 'ssh_host_dsa_key', 'ecdsa' => 'ssh_host_ecdsa_key', 'ed25519' => 'ssh_host_ed25519_key', );