summaryrefslogtreecommitdiffhomepage
path: root/common-algo.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2013-11-01 00:14:48 +0800
committerMatt Johnston <matt@ucc.asn.au>2013-11-01 00:14:48 +0800
commitf66fc01620f7a13d4763781059f4f01f8393809d (patch)
treedc6814959f974bfb516c392013d67f417f0b385a /common-algo.c
parent8eefb092c83f8f89f4d5574e4a05799eb9df3de8 (diff)
parent082a2dde354eb624b6fee33767e68e5b05dcde25 (diff)
Merge
Diffstat (limited to 'common-algo.c')
-rw-r--r--common-algo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/common-algo.c b/common-algo.c
index a8d9669..8076358 100644
--- a/common-algo.c
+++ b/common-algo.c
@@ -246,14 +246,14 @@ static struct dropbear_kex kex_ecdh_nistp521 = {NULL, 0, &ecc_curve_nistp521, &s
algo_type sshkex[] = {
#ifdef DROPBEAR_ECDH
-#ifdef DROPBEAR_ECC_256
- {"ecdh-sha2-nistp256", 0, &kex_ecdh_nistp256, 1, NULL},
+#ifdef DROPBEAR_ECC_521
+ {"ecdh-sha2-nistp521", 0, &kex_ecdh_nistp521, 1, NULL},
#endif
#ifdef DROPBEAR_ECC_384
{"ecdh-sha2-nistp384", 0, &kex_ecdh_nistp384, 1, NULL},
#endif
-#ifdef DROPBEAR_ECC_521
- {"ecdh-sha2-nistp521", 0, &kex_ecdh_nistp521, 1, NULL},
+#ifdef DROPBEAR_ECC_256
+ {"ecdh-sha2-nistp256", 0, &kex_ecdh_nistp256, 1, NULL},
#endif
#endif
{"diffie-hellman-group1-sha1", 0, &kex_dh_group1, 1, NULL},