diff options
author | Matt Johnston <matt@ucc.asn.au> | 2018-02-20 19:35:26 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2018-02-20 19:35:26 +0800 |
commit | 4058574cfa98adc3109ce80f0fd15d0c693216f1 (patch) | |
tree | ba38cf108f8a5caea75eae2055ef740e3b3c51e7 /common-algo.c | |
parent | 67111efdad6c3fe499aaf39e7f0f0d97f9e3ac21 (diff) |
add curve25519-sha256 without @libssh.org
Diffstat (limited to 'common-algo.c')
-rw-r--r-- | common-algo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common-algo.c b/common-algo.c index 5bfe831..2f896ab 100644 --- a/common-algo.c +++ b/common-algo.c @@ -276,6 +276,7 @@ static const struct dropbear_kex kex_curve25519 = {DROPBEAR_KEX_CURVE25519, NULL algo_type sshkex[] = { #if DROPBEAR_CURVE25519 + {"curve25519-sha256", 0, &kex_curve25519, 1, NULL}, {"curve25519-sha256@libssh.org", 0, &kex_curve25519, 1, NULL}, #endif #if DROPBEAR_ECDH |