diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2010-09-01 22:42:14 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2010-09-01 22:42:14 +0000 |
commit | 48b3c52d7d38c9e2f82321d22c4a0e0fbca46c98 (patch) | |
tree | fb2e2474e8278164a1704b7bb47114cd5149fffd /usr.bin | |
parent | 8124586d643d7a76aac1a575391d6859118d93ef (diff) |
prefer ECDH in a 256 bit curve field; prompted by naddy@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/myproposal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/myproposal.h b/usr.bin/ssh/myproposal.h index be81cd2c89e..6e620e9c17f 100644 --- a/usr.bin/ssh/myproposal.h +++ b/usr.bin/ssh/myproposal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: myproposal.h,v 1.26 2010/08/31 11:54:45 djm Exp $ */ +/* $OpenBSD: myproposal.h,v 1.27 2010/09/01 22:42:13 djm Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -25,9 +25,9 @@ */ #define KEX_DEFAULT_KEX \ - "ecdh-sha2-nistp521," \ "ecdh-sha2-nistp256," \ "ecdh-sha2-nistp384," \ + "ecdh-sha2-nistp521," \ "diffie-hellman-group-exchange-sha256," \ "diffie-hellman-group-exchange-sha1," \ "diffie-hellman-group14-sha1," \ |