Browse Source
- dropbear: add ed25519 to genkeys() function
master
vanhofen
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
package/dropbear/files/dropbear.init
|
@ -5,7 +5,7 @@ |
|
|
ETCDIR=/etc/dropbear |
|
|
ETCDIR=/etc/dropbear |
|
|
|
|
|
|
|
|
genkeys() { |
|
|
genkeys() { |
|
|
for keytype in dss rsa ecdsa; do |
|
|
for keytype in dss rsa ecdsa ed25519; do |
|
|
keyfile=$ETCDIR/dropbear_${keytype}_host_key |
|
|
keyfile=$ETCDIR/dropbear_${keytype}_host_key |
|
|
test -e $keyfile && continue |
|
|
test -e $keyfile && continue |
|
|
/usr/bin/dropbearkey -t $keytype -f $keyfile |
|
|
/usr/bin/dropbearkey -t $keytype -f $keyfile |
|
|