freebsd-dev/crypto/openssh/myproposal.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

117 lines
3.7 KiB
C
Raw Normal View History

2022-04-08 17:19:17 +00:00
/* $OpenBSD: myproposal.h,v 1.71 2022/03/30 21:13:23 djm Exp $ */
/*
* 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-09-30 13:29:51 +00:00
2021-02-14 21:04:52 +00:00
#define KEX_SERVER_KEX \
2022-04-08 17:19:17 +00:00
"sntrup761x25519-sha512@openssh.com," \
2021-02-14 21:04:52 +00:00
"curve25519-sha256," \
"curve25519-sha256@libssh.org," \
2011-02-17 11:47:40 +00:00
"ecdh-sha2-nistp256," \
"ecdh-sha2-nistp384," \
2021-02-14 21:04:52 +00:00
"ecdh-sha2-nistp521," \
2017-01-31 12:29:48 +00:00
"diffie-hellman-group-exchange-sha256," \
"diffie-hellman-group16-sha512," \
2021-02-14 21:04:52 +00:00
"diffie-hellman-group18-sha512," \
"diffie-hellman-group14-sha256"
2006-09-30 13:29:51 +00:00
2020-02-14 19:47:15 +00:00
#define KEX_CLIENT_KEX KEX_SERVER_KEX
2010-11-08 10:45:44 +00:00
#define KEX_DEFAULT_PK_ALG \
2021-04-23 19:10:38 +00:00
"ssh-ed25519-cert-v01@openssh.com," \
2021-02-14 21:04:52 +00:00
"ecdsa-sha2-nistp256-cert-v01@openssh.com," \
"ecdsa-sha2-nistp384-cert-v01@openssh.com," \
"ecdsa-sha2-nistp521-cert-v01@openssh.com," \
"sk-ssh-ed25519-cert-v01@openssh.com," \
2021-04-23 19:10:38 +00:00
"sk-ecdsa-sha2-nistp256-cert-v01@openssh.com," \
2018-08-28 10:47:58 +00:00
"rsa-sha2-512-cert-v01@openssh.com," \
"rsa-sha2-256-cert-v01@openssh.com," \
2021-04-23 19:10:38 +00:00
"ssh-ed25519," \
2021-02-14 21:04:52 +00:00
"ecdsa-sha2-nistp256," \
"ecdsa-sha2-nistp384," \
"ecdsa-sha2-nistp521," \
"sk-ssh-ed25519@openssh.com," \
2021-04-23 19:10:38 +00:00
"sk-ecdsa-sha2-nistp256@openssh.com," \
2016-03-10 20:10:25 +00:00
"rsa-sha2-512," \
2021-11-04 17:16:52 +00:00
"rsa-sha2-256"
2009-02-24 18:49:27 +00:00
2021-02-14 21:04:52 +00:00
#define KEX_SERVER_ENCRYPT \
2015-07-02 13:18:50 +00:00
"chacha20-poly1305@openssh.com," \
2021-02-14 21:04:52 +00:00
"aes128-ctr,aes192-ctr,aes256-ctr," \
"aes128-gcm@openssh.com,aes256-gcm@openssh.com"
2015-01-05 16:09:55 +00:00
2018-05-06 12:24:45 +00:00
#define KEX_CLIENT_ENCRYPT KEX_SERVER_ENCRYPT
2013-09-18 17:27:38 +00:00
2021-02-14 21:04:52 +00:00
#define KEX_SERVER_MAC \
2013-03-22 11:19:48 +00:00
"umac-64-etm@openssh.com," \
"umac-128-etm@openssh.com," \
"hmac-sha2-256-etm@openssh.com," \
"hmac-sha2-512-etm@openssh.com," \
2015-01-05 16:09:55 +00:00
"hmac-sha1-etm@openssh.com," \
"umac-64@openssh.com," \
"umac-128@openssh.com," \
"hmac-sha2-256," \
"hmac-sha2-512," \
"hmac-sha1"
2016-03-10 20:10:25 +00:00
#define KEX_CLIENT_MAC KEX_SERVER_MAC
2011-09-28 08:14:41 +00:00
2019-02-05 15:03:53 +00:00
/* Not a KEX value, but here so all the algorithm defaults are together */
#define SSH_ALLOWED_CA_SIGALGS \
2021-04-23 19:10:38 +00:00
"ssh-ed25519," \
2021-02-14 21:04:52 +00:00
"ecdsa-sha2-nistp256," \
"ecdsa-sha2-nistp384," \
"ecdsa-sha2-nistp521," \
"sk-ssh-ed25519@openssh.com," \
2021-04-23 19:10:38 +00:00
"sk-ecdsa-sha2-nistp256@openssh.com," \
2019-02-05 15:03:53 +00:00
"rsa-sha2-512," \
2021-02-14 21:04:52 +00:00
"rsa-sha2-256"
2015-01-05 16:09:55 +00:00
2017-01-31 12:33:47 +00:00
#define KEX_DEFAULT_COMP "none,zlib@openssh.com"
2000-05-15 04:37:24 +00:00
#define KEX_DEFAULT_LANG ""
2015-01-05 16:09:55 +00: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-05-15 04:37:24 +00:00
2015-01-05 16:09:55 +00: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-05-15 04:37:24 +00:00
KEX_DEFAULT_LANG