aboutsummaryrefslogtreecommitdiffstats
path: root/main/openssh/sshd.initd
diff options
context:
space:
mode:
authorEivind Uggedal <eivind@uggedal.com>2014-04-04 11:41:08 +0000
committerTimo Teräs <timo.teras@iki.fi>2014-04-04 14:57:40 +0300
commit382576cb87dd9f51f7fad493f7e8739547685d35 (patch)
tree3080bda99501c4c9b78ae57d73d295b0d929f007 /main/openssh/sshd.initd
parentb6c8cae60efa87d55b5580368eed6d9f169543d0 (diff)
downloadaports-382576cb87dd9f51f7fad493f7e8739547685d35.tar.bz2
aports-382576cb87dd9f51f7fad493f7e8739547685d35.tar.xz
main/openssh: generate ed25519 host key
Diffstat (limited to 'main/openssh/sshd.initd')
-rwxr-xr-xmain/openssh/sshd.initd2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/openssh/sshd.initd b/main/openssh/sshd.initd
index 193985b09a..937b60d7d4 100755
--- a/main/openssh/sshd.initd
+++ b/main/openssh/sshd.initd
@@ -52,7 +52,7 @@ gen_keys() {
if egrep -q '^[[:space:]]*Protocol[[:space:]]+.*1' "${SSHD_CONFDIR}"/sshd_config ; then
gen_key rsa1 "" || return 1
fi
- gen_key dsa && gen_key rsa && gen_key ecdsa
+ gen_key dsa && gen_key rsa && gen_key ecdsa && gen_key ed25519
return $?
}