blob: 08782dd30db13994594d4ed0effc56b46b781b70 [file] [log] [blame]
djm@openbsd.org4ba0d542018-07-03 11:39:54 +00001/* $OpenBSD: myproposal.h,v 1.56 2018/07/03 11:39:54 djm Exp $ */
Ben Lindstrom36579d32001-01-29 07:39:26 +00002
Damien Millere4340be2000-09-16 13:29:08 +11003/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
Tim Rice425a6882006-03-15 20:17:05 -080026
27#include <openssl/opensslv.h>
28
Darren Tuckerb8ae92d2013-06-11 12:10:02 +100029/* conditional algorithm support */
30
Damien Miller6af914a2010-09-10 11:39:26 +100031#ifdef OPENSSL_HAS_ECC
Darren Tucker37bcef52013-11-09 18:39:25 +110032#ifdef OPENSSL_HAS_NISTP521
Damien Miller6af914a2010-09-10 11:39:26 +100033# define KEX_ECDH_METHODS \
Damien Millereb8b60e2010-08-31 22:41:14 +100034 "ecdh-sha2-nistp256," \
35 "ecdh-sha2-nistp384," \
Damien Miller6af914a2010-09-10 11:39:26 +100036 "ecdh-sha2-nistp521,"
37# define HOSTKEY_ECDSA_CERT_METHODS \
38 "ecdsa-sha2-nistp256-cert-v01@openssh.com," \
39 "ecdsa-sha2-nistp384-cert-v01@openssh.com," \
40 "ecdsa-sha2-nistp521-cert-v01@openssh.com,"
41# define HOSTKEY_ECDSA_METHODS \
42 "ecdsa-sha2-nistp256," \
43 "ecdsa-sha2-nistp384," \
44 "ecdsa-sha2-nistp521,"
45#else
Darren Tucker37bcef52013-11-09 18:39:25 +110046# define KEX_ECDH_METHODS \
47 "ecdh-sha2-nistp256," \
48 "ecdh-sha2-nistp384,"
49# define HOSTKEY_ECDSA_CERT_METHODS \
50 "ecdsa-sha2-nistp256-cert-v01@openssh.com," \
51 "ecdsa-sha2-nistp384-cert-v01@openssh.com,"
52# define HOSTKEY_ECDSA_METHODS \
53 "ecdsa-sha2-nistp256," \
54 "ecdsa-sha2-nistp384,"
55#endif
56#else
Damien Miller6af914a2010-09-10 11:39:26 +100057# define KEX_ECDH_METHODS
58# define HOSTKEY_ECDSA_CERT_METHODS
59# define HOSTKEY_ECDSA_METHODS
60#endif
61
Darren Tucker97b62f42013-06-11 11:47:24 +100062#ifdef OPENSSL_HAVE_EVPGCM
63# define AESGCM_CIPHER_MODES \
djm@openbsd.orga22b9ef2015-03-24 09:17:21 +000064 ",aes128-gcm@openssh.com,aes256-gcm@openssh.com"
Darren Tucker97b62f42013-06-11 11:47:24 +100065#else
66# define AESGCM_CIPHER_MODES
67#endif
68
Darren Tucker2ea9eb72013-06-05 15:04:00 +100069#ifdef HAVE_EVP_SHA256
djm@openbsd.org0e8eeec2016-05-02 10:26:04 +000070# define KEX_SHA2_METHODS \
71 "diffie-hellman-group-exchange-sha256," \
72 "diffie-hellman-group16-sha512," \
73 "diffie-hellman-group18-sha512,"
74# define KEX_SHA2_GROUP14 \
75 "diffie-hellman-group14-sha256,"
Darren Tuckerb8ae92d2013-06-11 12:10:02 +100076#define SHA2_HMAC_MODES \
77 "hmac-sha2-256," \
78 "hmac-sha2-512,"
Damien Miller6af914a2010-09-10 11:39:26 +100079#else
djm@openbsd.org0e8eeec2016-05-02 10:26:04 +000080# define KEX_SHA2_METHODS
81# define KEX_SHA2_GROUP14
Darren Tuckerb8ae92d2013-06-11 12:10:02 +100082# define SHA2_HMAC_MODES
Damien Miller6af914a2010-09-10 11:39:26 +100083#endif
84
Damien Miller1f0311c2014-05-15 14:24:09 +100085#ifdef WITH_OPENSSL
Damien Miller2f3d1e72014-08-19 11:14:36 +100086# ifdef HAVE_EVP_SHA256
djm@openbsd.org04937662016-09-22 17:52:53 +000087# define KEX_CURVE25519_METHODS \
88 "curve25519-sha256," \
89 "curve25519-sha256@libssh.org,"
Darren Tuckerd7af0cc2014-06-11 07:37:25 +100090# else
91# define KEX_CURVE25519_METHODS ""
92# endif
dtucker@openbsd.org3ecde662015-05-27 23:51:10 +000093#define KEX_COMMON_KEX \
Darren Tuckerd7af0cc2014-06-11 07:37:25 +100094 KEX_CURVE25519_METHODS \
Damien Miller6af914a2010-09-10 11:39:26 +100095 KEX_ECDH_METHODS \
djm@openbsd.org0e8eeec2016-05-02 10:26:04 +000096 KEX_SHA2_METHODS
Damien Miller9235a032014-04-20 13:17:20 +100097
Damien Miller599f0112015-05-29 18:03:15 +100098#define KEX_SERVER_KEX KEX_COMMON_KEX \
djm@openbsd.org0e8eeec2016-05-02 10:26:04 +000099 KEX_SHA2_GROUP14 \
dtucker@openbsd.org3ecde662015-05-27 23:51:10 +0000100 "diffie-hellman-group14-sha1" \
101
Damien Miller599f0112015-05-29 18:03:15 +1000102#define KEX_CLIENT_KEX KEX_COMMON_KEX \
Damien Millera63128d2006-03-15 12:08:28 +1100103 "diffie-hellman-group-exchange-sha1," \
djm@openbsd.org0e8eeec2016-05-02 10:26:04 +0000104 KEX_SHA2_GROUP14 \
djm@openbsd.orgbdfd29f2015-07-03 03:47:00 +0000105 "diffie-hellman-group14-sha1"
Tim Rice425a6882006-03-15 20:17:05 -0800106
Damien Miller4e270b02010-04-16 15:56:21 +1000107#define KEX_DEFAULT_PK_ALG \
Damien Miller6af914a2010-09-10 11:39:26 +1000108 HOSTKEY_ECDSA_CERT_METHODS \
Damien Miller5be9d9e2013-12-07 11:24:01 +1100109 "ssh-ed25519-cert-v01@openssh.com," \
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000110 "rsa-sha2-512-cert-v01@openssh.com," \
111 "rsa-sha2-256-cert-v01@openssh.com," \
Damien Millereb8b60e2010-08-31 22:41:14 +1000112 "ssh-rsa-cert-v01@openssh.com," \
Damien Miller6af914a2010-09-10 11:39:26 +1000113 HOSTKEY_ECDSA_METHODS \
Damien Miller5be9d9e2013-12-07 11:24:01 +1100114 "ssh-ed25519," \
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000115 "rsa-sha2-512," \
markus@openbsd.org3da893f2015-12-05 20:53:21 +0000116 "rsa-sha2-256," \
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000117 "ssh-rsa"
Damien Miller67081b52009-01-28 16:33:31 +1100118
Darren Tuckerb8ae92d2013-06-11 12:10:02 +1000119/* the actual algorithms */
120
Damien Miller9235a032014-04-20 13:17:20 +1000121#define KEX_SERVER_ENCRYPT \
djm@openbsd.orga22b9ef2015-03-24 09:17:21 +0000122 "chacha20-poly1305@openssh.com," \
123 "aes128-ctr,aes192-ctr,aes256-ctr" \
124 AESGCM_CIPHER_MODES
Damien Miller9235a032014-04-20 13:17:20 +1000125
djm@openbsd.org70c12182017-05-07 23:13:42 +0000126#define KEX_CLIENT_ENCRYPT KEX_SERVER_ENCRYPT
Darren Tuckerb8ae92d2013-06-11 12:10:02 +1000127
Damien Miller9235a032014-04-20 13:17:20 +1000128#define KEX_SERVER_MAC \
Damien Milleraf43a7a2012-12-12 10:46:31 +1100129 "umac-64-etm@openssh.com," \
130 "umac-128-etm@openssh.com," \
131 "hmac-sha2-256-etm@openssh.com," \
132 "hmac-sha2-512-etm@openssh.com," \
Damien Miller6262d762014-07-17 09:52:07 +1000133 "hmac-sha1-etm@openssh.com," \
Damien Miller9235a032014-04-20 13:17:20 +1000134 "umac-64@openssh.com," \
135 "umac-128@openssh.com," \
136 "hmac-sha2-256," \
Damien Miller6262d762014-07-17 09:52:07 +1000137 "hmac-sha2-512," \
138 "hmac-sha1"
Damien Miller9235a032014-04-20 13:17:20 +1000139
djm@openbsd.org714e3672016-02-09 05:30:04 +0000140#define KEX_CLIENT_MAC KEX_SERVER_MAC
Damien Miller20bd4532011-08-06 06:17:30 +1000141
djm@openbsd.org714e3672016-02-09 05:30:04 +0000142#else /* WITH_OPENSSL */
Damien Miller1f0311c2014-05-15 14:24:09 +1000143
144#define KEX_SERVER_KEX \
djm@openbsd.org04937662016-09-22 17:52:53 +0000145 "curve25519-sha256," \
Damien Miller1f0311c2014-05-15 14:24:09 +1000146 "curve25519-sha256@libssh.org"
147#define KEX_DEFAULT_PK_ALG \
148 "ssh-ed25519-cert-v01@openssh.com," \
149 "ssh-ed25519"
150#define KEX_SERVER_ENCRYPT \
jsg@openbsd.org39bfbf72015-04-21 07:01:00 +0000151 "chacha20-poly1305@openssh.com," \
djm@openbsd.orga22b9ef2015-03-24 09:17:21 +0000152 "aes128-ctr,aes192-ctr,aes256-ctr"
Damien Miller1f0311c2014-05-15 14:24:09 +1000153#define KEX_SERVER_MAC \
Damien Miller294c58a2014-05-15 14:35:03 +1000154 "umac-64-etm@openssh.com," \
155 "umac-128-etm@openssh.com," \
Damien Miller1f0311c2014-05-15 14:24:09 +1000156 "hmac-sha2-256-etm@openssh.com," \
157 "hmac-sha2-512-etm@openssh.com," \
Damien Miller6262d762014-07-17 09:52:07 +1000158 "hmac-sha1-etm@openssh.com," \
Damien Miller294c58a2014-05-15 14:35:03 +1000159 "umac-64@openssh.com," \
160 "umac-128@openssh.com," \
Damien Miller1f0311c2014-05-15 14:24:09 +1000161 "hmac-sha2-256," \
Damien Miller6262d762014-07-17 09:52:07 +1000162 "hmac-sha2-512," \
163 "hmac-sha1"
Damien Miller1f0311c2014-05-15 14:24:09 +1000164
165#define KEX_CLIENT_KEX KEX_SERVER_KEX
166#define KEX_CLIENT_ENCRYPT KEX_SERVER_ENCRYPT
Damien Miller6262d762014-07-17 09:52:07 +1000167#define KEX_CLIENT_MAC KEX_SERVER_MAC
Damien Miller1f0311c2014-05-15 14:24:09 +1000168
169#endif /* WITH_OPENSSL */
170
djm@openbsd.org0082fba2016-09-28 16:33:06 +0000171#define KEX_DEFAULT_COMP "none,zlib@openssh.com"
Damien Miller1383bd82000-04-06 12:32:37 +1000172#define KEX_DEFAULT_LANG ""
173
Damien Miller9235a032014-04-20 13:17:20 +1000174#define KEX_CLIENT \
175 KEX_CLIENT_KEX, \
176 KEX_DEFAULT_PK_ALG, \
177 KEX_CLIENT_ENCRYPT, \
178 KEX_CLIENT_ENCRYPT, \
179 KEX_CLIENT_MAC, \
180 KEX_CLIENT_MAC, \
181 KEX_DEFAULT_COMP, \
182 KEX_DEFAULT_COMP, \
183 KEX_DEFAULT_LANG, \
Damien Miller1383bd82000-04-06 12:32:37 +1000184 KEX_DEFAULT_LANG
Damien Miller9235a032014-04-20 13:17:20 +1000185
186#define KEX_SERVER \
187 KEX_SERVER_KEX, \
188 KEX_DEFAULT_PK_ALG, \
189 KEX_SERVER_ENCRYPT, \
190 KEX_SERVER_ENCRYPT, \
191 KEX_SERVER_MAC, \
192 KEX_SERVER_MAC, \
193 KEX_DEFAULT_COMP, \
194 KEX_DEFAULT_COMP, \
195 KEX_DEFAULT_LANG, \
196 KEX_DEFAULT_LANG
197