Mercurial > dropbear
comparison README @ 1659:d32bcb5c557d
Add Ed25519 support (#91)
* Add support for Ed25519 as a public key type
Ed25519 is a elliptic curve signature scheme that offers
better security than ECDSA and DSA and good performance. It may be
used for both user and host keys.
OpenSSH key import and fuzzer are not supported yet.
Initially inspired by Peter Szabo.
* Add curve25519 and ed25519 fuzzers
* Add import and export of Ed25519 keys
author | Vladislav Grishenko <themiron@users.noreply.github.com> |
---|---|
date | Wed, 11 Mar 2020 21:09:45 +0500 |
parents | ff3f274ea56c |
children |
comparison
equal
deleted
inserted
replaced
1658:7402218141d4 | 1659:d32bcb5c557d |
---|---|
53 | 53 |
54 To run the server, you need to generate server keys, this is one-off: | 54 To run the server, you need to generate server keys, this is one-off: |
55 ./dropbearkey -t rsa -f dropbear_rsa_host_key | 55 ./dropbearkey -t rsa -f dropbear_rsa_host_key |
56 ./dropbearkey -t dss -f dropbear_dss_host_key | 56 ./dropbearkey -t dss -f dropbear_dss_host_key |
57 ./dropbearkey -t ecdsa -f dropbear_ecdsa_host_key | 57 ./dropbearkey -t ecdsa -f dropbear_ecdsa_host_key |
58 ./dropbearkey -t ed25519 -f dropbear_ed25519_host_key | |
58 | 59 |
59 or alternatively convert OpenSSH keys to Dropbear: | 60 or alternatively convert OpenSSH keys to Dropbear: |
60 ./dropbearconvert openssh dropbear /etc/ssh/ssh_host_dsa_key dropbear_dss_host_key | 61 ./dropbearconvert openssh dropbear /etc/ssh/ssh_host_dsa_key dropbear_dss_host_key |
61 | 62 |
62 You can also get Dropbear to create keys when the first connection is made - | 63 You can also get Dropbear to create keys when the first connection is made - |