summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--myproposal.h16
2 files changed, 12 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 9721794b2..d133c5b73 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,10 @@
7 Permit use of SYS_sendsyslog from inside the sandbox. Clock is ticking, 7 Permit use of SYS_sendsyslog from inside the sandbox. Clock is ticking,
8 update your kernels and sshd soon.. libc will start using sendsyslog() 8 update your kernels and sshd soon.. libc will start using sendsyslog()
9 in about 4 days. 9 in about 4 days.
10 - tedu@cvs.openbsd.org 2014/07/11 13:54:34
11 [myproposal.h]
12 by popular demand, add back hamc-sha1 to server proposal for better compat
13 with many clients still in use. ok deraadt
10 14
1120140715 1520140715
12 - (djm) [configure.ac] Delay checks for arc4random* until after libcrypto 16 - (djm) [configure.ac] Delay checks for arc4random* until after libcrypto
diff --git a/myproposal.h b/myproposal.h
index d42988996..32d0f14b5 100644
--- a/myproposal.h
+++ b/myproposal.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: myproposal.h,v 1.40 2014/04/30 19:07:48 naddy Exp $ */ 1/* $OpenBSD: myproposal.h,v 1.41 2014/07/11 13:54:34 tedu Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -122,19 +122,19 @@
122 "umac-128-etm@openssh.com," \ 122 "umac-128-etm@openssh.com," \
123 "hmac-sha2-256-etm@openssh.com," \ 123 "hmac-sha2-256-etm@openssh.com," \
124 "hmac-sha2-512-etm@openssh.com," \ 124 "hmac-sha2-512-etm@openssh.com," \
125 "hmac-sha1-etm@openssh.com," \
125 "umac-64@openssh.com," \ 126 "umac-64@openssh.com," \
126 "umac-128@openssh.com," \ 127 "umac-128@openssh.com," \
127 "hmac-sha2-256," \ 128 "hmac-sha2-256," \
128 "hmac-sha2-512" 129 "hmac-sha2-512," \
130 "hmac-sha1"
129 131
130#define KEX_CLIENT_MAC KEX_SERVER_MAC "," \ 132#define KEX_CLIENT_MAC KEX_SERVER_MAC "," \
131 "hmac-md5-etm@openssh.com," \ 133 "hmac-md5-etm@openssh.com," \
132 "hmac-sha1-etm@openssh.com," \
133 "hmac-ripemd160-etm@openssh.com," \ 134 "hmac-ripemd160-etm@openssh.com," \
134 "hmac-sha1-96-etm@openssh.com," \ 135 "hmac-sha1-96-etm@openssh.com," \
135 "hmac-md5-96-etm@openssh.com," \ 136 "hmac-md5-96-etm@openssh.com," \
136 "hmac-md5," \ 137 "hmac-md5," \
137 "hmac-sha1," \
138 "hmac-ripemd160," \ 138 "hmac-ripemd160," \
139 "hmac-ripemd160@openssh.com," \ 139 "hmac-ripemd160@openssh.com," \
140 "hmac-sha1-96," \ 140 "hmac-sha1-96," \
@@ -155,16 +155,16 @@
155 "umac-128-etm@openssh.com," \ 155 "umac-128-etm@openssh.com," \
156 "hmac-sha2-256-etm@openssh.com," \ 156 "hmac-sha2-256-etm@openssh.com," \
157 "hmac-sha2-512-etm@openssh.com," \ 157 "hmac-sha2-512-etm@openssh.com," \
158 "hmac-sha1-etm@openssh.com," \
158 "umac-64@openssh.com," \ 159 "umac-64@openssh.com," \
159 "umac-128@openssh.com," \ 160 "umac-128@openssh.com," \
160 "hmac-sha2-256," \ 161 "hmac-sha2-256," \
161 "hmac-sha2-512" 162 "hmac-sha2-512," \
163 "hmac-sha1"
162 164
163#define KEX_CLIENT_KEX KEX_SERVER_KEX 165#define KEX_CLIENT_KEX KEX_SERVER_KEX
164#define KEX_CLIENT_ENCRYPT KEX_SERVER_ENCRYPT 166#define KEX_CLIENT_ENCRYPT KEX_SERVER_ENCRYPT
165#define KEX_CLIENT_MAC KEX_SERVER_MAC "," \ 167#define KEX_CLIENT_MAC KEX_SERVER_MAC
166 "hmac-sha1-etm@openssh.com," \
167 "hmac-sha1"
168 168
169#endif /* WITH_OPENSSL */ 169#endif /* WITH_OPENSSL */
170 170