1 /* $OpenBSD: myproposal.h,v 1.78 2026/02/05 22:05:49 djm Exp $ */ 2 3 /* 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 */ 26 27 #define KEX_SERVER_KEX \ 28 "mlkem768x25519-sha256," \ 29 "sntrup761x25519-sha512," \ 30 "sntrup761x25519-sha512@openssh.com," \ 31 "curve25519-sha256," \ 32 "curve25519-sha256@libssh.org," \ 33 "ecdh-sha2-nistp256," \ 34 "ecdh-sha2-nistp384," \ 35 "ecdh-sha2-nistp521" \ 36 37 #define KEX_CLIENT_KEX KEX_SERVER_KEX "," \ 38 "diffie-hellman-group-exchange-sha256," \ 39 "diffie-hellman-group16-sha512," \ 40 "diffie-hellman-group18-sha512," \ 41 "diffie-hellman-group14-sha256" 42 43 #define KEX_DEFAULT_PK_ALG \ 44 "ssh-ed25519-cert-v01@openssh.com," \ 45 "ecdsa-sha2-nistp256-cert-v01@openssh.com," \ 46 "ecdsa-sha2-nistp384-cert-v01@openssh.com," \ 47 "ecdsa-sha2-nistp521-cert-v01@openssh.com," \ 48 "sk-ssh-ed25519-cert-v01@openssh.com," \ 49 "sk-ecdsa-sha2-nistp256-cert-v01@openssh.com," \ 50 "webauthn-sk-ecdsa-sha2-nistp256-cert-v01@openssh.com," \ 51 "rsa-sha2-512-cert-v01@openssh.com," \ 52 "rsa-sha2-256-cert-v01@openssh.com," \ 53 "ssh-ed25519," \ 54 "ecdsa-sha2-nistp256," \ 55 "ecdsa-sha2-nistp384," \ 56 "ecdsa-sha2-nistp521," \ 57 "sk-ssh-ed25519@openssh.com," \ 58 "sk-ecdsa-sha2-nistp256@openssh.com," \ 59 "webauthn-sk-ecdsa-sha2-nistp256@openssh.com," \ 60 "rsa-sha2-512," \ 61 "rsa-sha2-256" 62 63 #define KEX_SERVER_ENCRYPT \ 64 "chacha20-poly1305@openssh.com," \ 65 "aes128-gcm@openssh.com,aes256-gcm@openssh.com," \ 66 "aes128-ctr,aes192-ctr,aes256-ctr" 67 68 #define KEX_CLIENT_ENCRYPT KEX_SERVER_ENCRYPT 69 70 #define KEX_SERVER_MAC \ 71 "umac-64-etm@openssh.com," \ 72 "umac-128-etm@openssh.com," \ 73 "hmac-sha2-256-etm@openssh.com," \ 74 "hmac-sha2-512-etm@openssh.com," \ 75 "hmac-sha1-etm@openssh.com," \ 76 "umac-64@openssh.com," \ 77 "umac-128@openssh.com," \ 78 "hmac-sha2-256," \ 79 "hmac-sha2-512," \ 80 "hmac-sha1" 81 82 #define KEX_CLIENT_MAC KEX_SERVER_MAC 83 84 /* Not a KEX value, but here so all the algorithm defaults are together */ 85 #define SSH_ALLOWED_CA_SIGALGS \ 86 "ssh-ed25519," \ 87 "ecdsa-sha2-nistp256," \ 88 "ecdsa-sha2-nistp384," \ 89 "ecdsa-sha2-nistp521," \ 90 "sk-ssh-ed25519@openssh.com," \ 91 "sk-ecdsa-sha2-nistp256@openssh.com," \ 92 "webauthn-sk-ecdsa-sha2-nistp256@openssh.com," \ 93 "rsa-sha2-512," \ 94 "rsa-sha2-256" 95 96 #define KEX_DEFAULT_COMP "none,zlib@openssh.com" 97 #define KEX_DEFAULT_LANG "" 98 99 #define KEX_CLIENT \ 100 KEX_CLIENT_KEX, \ 101 KEX_DEFAULT_PK_ALG, \ 102 KEX_CLIENT_ENCRYPT, \ 103 KEX_CLIENT_ENCRYPT, \ 104 KEX_CLIENT_MAC, \ 105 KEX_CLIENT_MAC, \ 106 KEX_DEFAULT_COMP, \ 107 KEX_DEFAULT_COMP, \ 108 KEX_DEFAULT_LANG, \ 109 KEX_DEFAULT_LANG 110 111 #define KEX_SERVER \ 112 KEX_SERVER_KEX, \ 113 KEX_DEFAULT_PK_ALG, \ 114 KEX_SERVER_ENCRYPT, \ 115 KEX_SERVER_ENCRYPT, \ 116 KEX_SERVER_MAC, \ 117 KEX_SERVER_MAC, \ 118 KEX_DEFAULT_COMP, \ 119 KEX_DEFAULT_COMP, \ 120 KEX_DEFAULT_LANG, \ 121 KEX_DEFAULT_LANG 122