]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - crypto/openssh/myproposal.h
Update tcpdump to 4.9.0.
[FreeBSD/FreeBSD.git] / crypto / openssh / myproposal.h
1 /* $OpenBSD: myproposal.h,v 1.50 2016/02/09 05:30:04 djm Exp $ */
2 /* $FreeBSD$ */
3
4 /*
5  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #include <openssl/opensslv.h>
29
30 /* conditional algorithm support */
31
32 #ifdef OPENSSL_HAS_ECC
33 #ifdef OPENSSL_HAS_NISTP521
34 # define KEX_ECDH_METHODS \
35         "ecdh-sha2-nistp256," \
36         "ecdh-sha2-nistp384," \
37         "ecdh-sha2-nistp521,"
38 # define HOSTKEY_ECDSA_CERT_METHODS \
39         "ecdsa-sha2-nistp256-cert-v01@openssh.com," \
40         "ecdsa-sha2-nistp384-cert-v01@openssh.com," \
41         "ecdsa-sha2-nistp521-cert-v01@openssh.com,"
42 # define HOSTKEY_ECDSA_METHODS \
43         "ecdsa-sha2-nistp256," \
44         "ecdsa-sha2-nistp384," \
45         "ecdsa-sha2-nistp521,"
46 #else
47 # define KEX_ECDH_METHODS \
48         "ecdh-sha2-nistp256," \
49         "ecdh-sha2-nistp384,"
50 # define HOSTKEY_ECDSA_CERT_METHODS \
51         "ecdsa-sha2-nistp256-cert-v01@openssh.com," \
52         "ecdsa-sha2-nistp384-cert-v01@openssh.com,"
53 # define HOSTKEY_ECDSA_METHODS \
54         "ecdsa-sha2-nistp256," \
55         "ecdsa-sha2-nistp384,"
56 #endif
57 #else
58 # define KEX_ECDH_METHODS
59 # define HOSTKEY_ECDSA_CERT_METHODS
60 # define HOSTKEY_ECDSA_METHODS
61 #endif
62
63 #ifdef OPENSSL_HAVE_EVPGCM
64 # define AESGCM_CIPHER_MODES \
65         ",aes128-gcm@openssh.com,aes256-gcm@openssh.com"
66 #else
67 # define AESGCM_CIPHER_MODES
68 #endif
69
70 #ifdef HAVE_EVP_SHA256
71 # define KEX_SHA256_METHODS \
72         "diffie-hellman-group-exchange-sha256,"
73 #define SHA2_HMAC_MODES \
74         "hmac-sha2-256," \
75         "hmac-sha2-512,"
76 #else
77 # define KEX_SHA256_METHODS
78 # define SHA2_HMAC_MODES
79 #endif
80
81 #ifdef WITH_OPENSSL
82 # ifdef HAVE_EVP_SHA256
83 #  define KEX_CURVE25519_METHODS "curve25519-sha256@libssh.org,"
84 # else
85 #  define KEX_CURVE25519_METHODS ""
86 # endif
87 #define KEX_COMMON_KEX \
88         KEX_CURVE25519_METHODS \
89         KEX_ECDH_METHODS \
90         KEX_SHA256_METHODS
91
92 #define KEX_SERVER_KEX KEX_COMMON_KEX \
93         "diffie-hellman-group14-sha1" \
94
95 #define KEX_CLIENT_KEX KEX_COMMON_KEX \
96         "diffie-hellman-group-exchange-sha1," \
97         "diffie-hellman-group14-sha1"
98
99 #define KEX_DEFAULT_PK_ALG      \
100         HOSTKEY_ECDSA_CERT_METHODS \
101         "ssh-ed25519-cert-v01@openssh.com," \
102         "ssh-rsa-cert-v01@openssh.com," \
103         HOSTKEY_ECDSA_METHODS \
104         "ssh-ed25519," \
105         "rsa-sha2-512," \
106         "rsa-sha2-256," \
107         "ssh-rsa"
108
109 /* the actual algorithms */
110
111 #define KEX_SERVER_ENCRYPT \
112         "chacha20-poly1305@openssh.com," \
113         "aes128-ctr,aes192-ctr,aes256-ctr" \
114         AESGCM_CIPHER_MODES \
115         ",aes128-cbc,aes192-cbc,aes256-cbc"
116
117 #define KEX_CLIENT_ENCRYPT KEX_SERVER_ENCRYPT "," \
118         "3des-cbc"
119
120 #define KEX_SERVER_MAC \
121         "umac-64-etm@openssh.com," \
122         "umac-128-etm@openssh.com," \
123         "hmac-sha2-256-etm@openssh.com," \
124         "hmac-sha2-512-etm@openssh.com," \
125         "hmac-sha1-etm@openssh.com," \
126         "umac-64@openssh.com," \
127         "umac-128@openssh.com," \
128         "hmac-sha2-256," \
129         "hmac-sha2-512," \
130         "hmac-sha1"
131
132 #define KEX_CLIENT_MAC KEX_SERVER_MAC
133
134 #else /* WITH_OPENSSL */
135
136 #define KEX_SERVER_KEX          \
137         "curve25519-sha256@libssh.org"
138 #define KEX_DEFAULT_PK_ALG      \
139         "ssh-ed25519-cert-v01@openssh.com," \
140         "ssh-ed25519"
141 #define KEX_SERVER_ENCRYPT \
142         "chacha20-poly1305@openssh.com," \
143         "aes128-ctr,aes192-ctr,aes256-ctr"
144 #define KEX_SERVER_MAC \
145         "umac-64-etm@openssh.com," \
146         "umac-128-etm@openssh.com," \
147         "hmac-sha2-256-etm@openssh.com," \
148         "hmac-sha2-512-etm@openssh.com," \
149         "hmac-sha1-etm@openssh.com," \
150         "umac-64@openssh.com," \
151         "umac-128@openssh.com," \
152         "hmac-sha2-256," \
153         "hmac-sha2-512," \
154         "hmac-sha1"
155
156 #define KEX_CLIENT_KEX KEX_SERVER_KEX
157 #define KEX_CLIENT_ENCRYPT KEX_SERVER_ENCRYPT
158 #define KEX_CLIENT_MAC KEX_SERVER_MAC
159
160 #endif /* WITH_OPENSSL */
161
162 #define KEX_DEFAULT_COMP        "none,zlib@openssh.com,zlib"
163 #define KEX_DEFAULT_LANG        ""
164
165 #define KEX_CLIENT \
166         KEX_CLIENT_KEX, \
167         KEX_DEFAULT_PK_ALG, \
168         KEX_CLIENT_ENCRYPT, \
169         KEX_CLIENT_ENCRYPT, \
170         KEX_CLIENT_MAC, \
171         KEX_CLIENT_MAC, \
172         KEX_DEFAULT_COMP, \
173         KEX_DEFAULT_COMP, \
174         KEX_DEFAULT_LANG, \
175         KEX_DEFAULT_LANG
176
177 #define KEX_SERVER \
178         KEX_SERVER_KEX, \
179         KEX_DEFAULT_PK_ALG, \
180         KEX_SERVER_ENCRYPT, \
181         KEX_SERVER_ENCRYPT, \
182         KEX_SERVER_MAC, \
183         KEX_SERVER_MAC, \
184         KEX_DEFAULT_COMP, \
185         KEX_DEFAULT_COMP, \
186         KEX_DEFAULT_LANG, \
187         KEX_DEFAULT_LANG
188