2022-03-30 23:13:23 +02:00
|
|
|
/* $OpenBSD: myproposal.h,v 1.71 2022/03/30 21:13:23 djm Exp $ */
|
2001-01-29 08:39:26 +01:00
|
|
|
|
2000-09-16 04:29:08 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2006-03-16 05:17:05 +01:00
|
|
|
|
2020-01-23 03:46:49 +01:00
|
|
|
#define KEX_SERVER_KEX \
|
2022-03-30 23:13:23 +02:00
|
|
|
"sntrup761x25519-sha512@openssh.com," \
|
2020-01-23 03:46:49 +01:00
|
|
|
"curve25519-sha256," \
|
|
|
|
"curve25519-sha256@libssh.org," \
|
2010-09-10 03:39:26 +02:00
|
|
|
"ecdh-sha2-nistp256," \
|
|
|
|
"ecdh-sha2-nistp384," \
|
2020-01-23 03:46:49 +01:00
|
|
|
"ecdh-sha2-nistp521," \
|
2016-05-02 12:26:04 +02:00
|
|
|
"diffie-hellman-group-exchange-sha256," \
|
|
|
|
"diffie-hellman-group16-sha512," \
|
2020-01-23 03:46:49 +01:00
|
|
|
"diffie-hellman-group18-sha512," \
|
|
|
|
"diffie-hellman-group14-sha256"
|
2006-03-16 05:17:05 +01:00
|
|
|
|
2019-02-23 09:20:43 +01:00
|
|
|
#define KEX_CLIENT_KEX KEX_SERVER_KEX
|
|
|
|
|
2010-04-16 07:56:21 +02:00
|
|
|
#define KEX_DEFAULT_PK_ALG \
|
2020-10-03 06:15:06 +02:00
|
|
|
"ssh-ed25519-cert-v01@openssh.com," \
|
2020-01-23 03:46:49 +01:00
|
|
|
"ecdsa-sha2-nistp256-cert-v01@openssh.com," \
|
|
|
|
"ecdsa-sha2-nistp384-cert-v01@openssh.com," \
|
|
|
|
"ecdsa-sha2-nistp521-cert-v01@openssh.com," \
|
2019-12-15 19:57:30 +01:00
|
|
|
"sk-ssh-ed25519-cert-v01@openssh.com," \
|
2020-10-03 06:15:06 +02:00
|
|
|
"sk-ecdsa-sha2-nistp256-cert-v01@openssh.com," \
|
2018-07-03 13:39:54 +02:00
|
|
|
"rsa-sha2-512-cert-v01@openssh.com," \
|
|
|
|
"rsa-sha2-256-cert-v01@openssh.com," \
|
2020-10-03 06:15:06 +02:00
|
|
|
"ssh-ed25519," \
|
2020-01-23 03:46:49 +01:00
|
|
|
"ecdsa-sha2-nistp256," \
|
|
|
|
"ecdsa-sha2-nistp384," \
|
|
|
|
"ecdsa-sha2-nistp521," \
|
2019-12-15 19:57:30 +01:00
|
|
|
"sk-ssh-ed25519@openssh.com," \
|
2020-10-03 06:15:06 +02:00
|
|
|
"sk-ecdsa-sha2-nistp256@openssh.com," \
|
2015-12-04 17:41:28 +01:00
|
|
|
"rsa-sha2-512," \
|
2021-08-30 01:53:10 +02:00
|
|
|
"rsa-sha2-256"
|
2009-01-28 06:33:31 +01:00
|
|
|
|
2020-01-23 03:46:49 +01:00
|
|
|
#define KEX_SERVER_ENCRYPT \
|
2015-03-24 10:17:21 +01:00
|
|
|
"chacha20-poly1305@openssh.com," \
|
2020-01-23 03:46:49 +01:00
|
|
|
"aes128-ctr,aes192-ctr,aes256-ctr," \
|
|
|
|
"aes128-gcm@openssh.com,aes256-gcm@openssh.com"
|
2014-04-20 05:17:20 +02:00
|
|
|
|
2017-05-08 01:13:42 +02:00
|
|
|
#define KEX_CLIENT_ENCRYPT KEX_SERVER_ENCRYPT
|
2013-06-11 04:10:02 +02:00
|
|
|
|
2020-01-23 03:46:49 +01:00
|
|
|
#define KEX_SERVER_MAC \
|
2012-12-12 00:46:31 +01:00
|
|
|
"umac-64-etm@openssh.com," \
|
|
|
|
"umac-128-etm@openssh.com," \
|
|
|
|
"hmac-sha2-256-etm@openssh.com," \
|
|
|
|
"hmac-sha2-512-etm@openssh.com," \
|
2014-07-17 01:52:07 +02:00
|
|
|
"hmac-sha1-etm@openssh.com," \
|
2014-04-20 05:17:20 +02:00
|
|
|
"umac-64@openssh.com," \
|
|
|
|
"umac-128@openssh.com," \
|
|
|
|
"hmac-sha2-256," \
|
2014-07-17 01:52:07 +02:00
|
|
|
"hmac-sha2-512," \
|
|
|
|
"hmac-sha1"
|
2014-04-20 05:17:20 +02:00
|
|
|
|
2016-02-09 06:30:04 +01:00
|
|
|
#define KEX_CLIENT_MAC KEX_SERVER_MAC
|
2011-08-05 22:17:30 +02:00
|
|
|
|
2018-09-12 03:34:02 +02:00
|
|
|
/* Not a KEX value, but here so all the algorithm defaults are together */
|
|
|
|
#define SSH_ALLOWED_CA_SIGALGS \
|
2020-10-03 06:15:06 +02:00
|
|
|
"ssh-ed25519," \
|
2020-01-23 03:46:49 +01:00
|
|
|
"ecdsa-sha2-nistp256," \
|
|
|
|
"ecdsa-sha2-nistp384," \
|
|
|
|
"ecdsa-sha2-nistp521," \
|
2019-12-10 23:43:19 +01:00
|
|
|
"sk-ssh-ed25519@openssh.com," \
|
2020-10-03 06:15:06 +02:00
|
|
|
"sk-ecdsa-sha2-nistp256@openssh.com," \
|
2018-09-12 03:34:02 +02:00
|
|
|
"rsa-sha2-512," \
|
2020-01-24 01:28:57 +01:00
|
|
|
"rsa-sha2-256"
|
2018-09-12 03:34:02 +02:00
|
|
|
|
2016-09-28 18:33:06 +02:00
|
|
|
#define KEX_DEFAULT_COMP "none,zlib@openssh.com"
|
2000-04-06 04:32:37 +02:00
|
|
|
#define KEX_DEFAULT_LANG ""
|
|
|
|
|
2014-04-20 05:17:20 +02:00
|
|
|
#define KEX_CLIENT \
|
|
|
|
KEX_CLIENT_KEX, \
|
|
|
|
KEX_DEFAULT_PK_ALG, \
|
|
|
|
KEX_CLIENT_ENCRYPT, \
|
|
|
|
KEX_CLIENT_ENCRYPT, \
|
|
|
|
KEX_CLIENT_MAC, \
|
|
|
|
KEX_CLIENT_MAC, \
|
|
|
|
KEX_DEFAULT_COMP, \
|
|
|
|
KEX_DEFAULT_COMP, \
|
|
|
|
KEX_DEFAULT_LANG, \
|
|
|
|
KEX_DEFAULT_LANG
|
2000-04-06 04:32:37 +02:00
|
|
|
|
2014-04-20 05:17:20 +02:00
|
|
|
#define KEX_SERVER \
|
|
|
|
KEX_SERVER_KEX, \
|
|
|
|
KEX_DEFAULT_PK_ALG, \
|
|
|
|
KEX_SERVER_ENCRYPT, \
|
|
|
|
KEX_SERVER_ENCRYPT, \
|
|
|
|
KEX_SERVER_MAC, \
|
|
|
|
KEX_SERVER_MAC, \
|
|
|
|
KEX_DEFAULT_COMP, \
|
|
|
|
KEX_DEFAULT_COMP, \
|
|
|
|
KEX_DEFAULT_LANG, \
|
2000-04-06 04:32:37 +02:00
|
|
|
KEX_DEFAULT_LANG
|