diff options
author | 2020-01-22 04:58:23 +0000 | |
---|---|---|
committer | 2020-01-22 04:58:23 +0000 | |
commit | d62239e4d51e7be81a5c42fb352e52951683b5b3 (patch) | |
tree | 45ddd51ab68bcb5031af2c4fec8634a7fe138b44 | |
parent | For ssh-keygen -lF only add a space after key fingerprint when there is a (diff) | |
download | wireguard-openbsd-d62239e4d51e7be81a5c42fb352e52951683b5b3.tar.xz wireguard-openbsd-d62239e4d51e7be81a5c42fb352e52951683b5b3.zip |
remove diffie-hellman-group14-sha1 from default kex to see what happens.
general mostly ok
-rw-r--r-- | usr.bin/ssh/myproposal.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/ssh/myproposal.h b/usr.bin/ssh/myproposal.h index 2ba2537099a..86408dbf406 100644 --- a/usr.bin/ssh/myproposal.h +++ b/usr.bin/ssh/myproposal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: myproposal.h,v 1.64 2019/12/16 03:16:58 djm Exp $ */ +/* $OpenBSD: myproposal.h,v 1.65 2020/01/22 04:58:23 tedu Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -35,8 +35,7 @@ "diffie-hellman-group-exchange-sha256," \ "diffie-hellman-group16-sha512," \ "diffie-hellman-group18-sha512," \ - "diffie-hellman-group14-sha256," \ - "diffie-hellman-group14-sha1" + "diffie-hellman-group14-sha256" #define KEX_CLIENT_KEX KEX_SERVER_KEX |