markus@openbsd.org | 2c55744 | 2019-11-12 19:33:08 +0000 | [diff] [blame] | 1 | /* $OpenBSD: myproposal.h,v 1.61 2019/11/12 19:33:08 markus Exp $ */ |
Ben Lindstrom | 36579d3 | 2001-01-29 07:39:26 +0000 | [diff] [blame] | 2 | |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 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 | */ |
Tim Rice | 425a688 | 2006-03-15 20:17:05 -0800 | [diff] [blame] | 26 | |
Darren Tucker | 850ec17 | 2019-10-28 15:57:22 +1100 | [diff] [blame] | 27 | #ifdef WITH_OPENSSL |
Tim Rice | 425a688 | 2006-03-15 20:17:05 -0800 | [diff] [blame] | 28 | #include <openssl/opensslv.h> |
Darren Tucker | 850ec17 | 2019-10-28 15:57:22 +1100 | [diff] [blame] | 29 | #endif |
Tim Rice | 425a688 | 2006-03-15 20:17:05 -0800 | [diff] [blame] | 30 | |
Darren Tucker | b8ae92d | 2013-06-11 12:10:02 +1000 | [diff] [blame] | 31 | /* conditional algorithm support */ |
| 32 | |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 33 | #ifdef OPENSSL_HAS_ECC |
Damien Miller | 6a7ef31 | 2019-11-18 22:22:04 +1100 | [diff] [blame] | 34 | # ifdef OPENSSL_HAS_NISTP521 |
| 35 | # define KEX_ECDH_METHODS \ |
Damien Miller | eb8b60e | 2010-08-31 22:41:14 +1000 | [diff] [blame] | 36 | "ecdh-sha2-nistp256," \ |
| 37 | "ecdh-sha2-nistp384," \ |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 38 | "ecdh-sha2-nistp521," |
Damien Miller | 6a7ef31 | 2019-11-18 22:22:04 +1100 | [diff] [blame] | 39 | # define HOSTKEY_ECDSA_CERT_METHODS \ |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 40 | "ecdsa-sha2-nistp256-cert-v01@openssh.com," \ |
| 41 | "ecdsa-sha2-nistp384-cert-v01@openssh.com," \ |
| 42 | "ecdsa-sha2-nistp521-cert-v01@openssh.com," |
Damien Miller | 6a7ef31 | 2019-11-18 22:22:04 +1100 | [diff] [blame] | 43 | # define HOSTKEY_ECDSA_METHODS \ |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 44 | "ecdsa-sha2-nistp256," \ |
| 45 | "ecdsa-sha2-nistp384," \ |
| 46 | "ecdsa-sha2-nistp521," |
Damien Miller | 6a7ef31 | 2019-11-18 22:22:04 +1100 | [diff] [blame] | 47 | # else /* OPENSSL_HAS_NISTP521 */ |
| 48 | # define KEX_ECDH_METHODS \ |
Darren Tucker | 37bcef5 | 2013-11-09 18:39:25 +1100 | [diff] [blame] | 49 | "ecdh-sha2-nistp256," \ |
| 50 | "ecdh-sha2-nistp384," |
Damien Miller | 6a7ef31 | 2019-11-18 22:22:04 +1100 | [diff] [blame] | 51 | # define HOSTKEY_ECDSA_CERT_METHODS \ |
Darren Tucker | 37bcef5 | 2013-11-09 18:39:25 +1100 | [diff] [blame] | 52 | "ecdsa-sha2-nistp256-cert-v01@openssh.com," \ |
| 53 | "ecdsa-sha2-nistp384-cert-v01@openssh.com," |
Damien Miller | 6a7ef31 | 2019-11-18 22:22:04 +1100 | [diff] [blame] | 54 | # define HOSTKEY_ECDSA_METHODS \ |
Darren Tucker | 37bcef5 | 2013-11-09 18:39:25 +1100 | [diff] [blame] | 55 | "ecdsa-sha2-nistp256," \ |
| 56 | "ecdsa-sha2-nistp384," |
Damien Miller | 6a7ef31 | 2019-11-18 22:22:04 +1100 | [diff] [blame] | 57 | # endif /* OPENSSL_HAS_NISTP521 */ |
| 58 | # define USERKEY_ECDSA_SK_CERT_METHODS \ |
| 59 | "sk-ecdsa-sha2-nistp256-cert-v01@openssh.com," |
| 60 | # define USERKEY_ECDSA_SK_METHODS \ |
| 61 | "sk-ecdsa-sha2-nistp256@openssh.com," |
| 62 | #else /* OPENSSL_HAS_ECC */ |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 63 | # define KEX_ECDH_METHODS |
| 64 | # define HOSTKEY_ECDSA_CERT_METHODS |
| 65 | # define HOSTKEY_ECDSA_METHODS |
Damien Miller | 6a7ef31 | 2019-11-18 22:22:04 +1100 | [diff] [blame] | 66 | # define USERKEY_ECDSA_SK_CERT_METHODS |
| 67 | # define USERKEY_ECDSA_SK_METHODS |
| 68 | #endif /* OPENSSL_HAS_ECC */ |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 69 | |
Darren Tucker | 97b62f4 | 2013-06-11 11:47:24 +1000 | [diff] [blame] | 70 | #ifdef OPENSSL_HAVE_EVPGCM |
| 71 | # define AESGCM_CIPHER_MODES \ |
djm@openbsd.org | a22b9ef | 2015-03-24 09:17:21 +0000 | [diff] [blame] | 72 | ",aes128-gcm@openssh.com,aes256-gcm@openssh.com" |
Darren Tucker | 97b62f4 | 2013-06-11 11:47:24 +1000 | [diff] [blame] | 73 | #else |
| 74 | # define AESGCM_CIPHER_MODES |
| 75 | #endif |
| 76 | |
Darren Tucker | 2ea9eb7 | 2013-06-05 15:04:00 +1000 | [diff] [blame] | 77 | #ifdef HAVE_EVP_SHA256 |
djm@openbsd.org | 0e8eeec | 2016-05-02 10:26:04 +0000 | [diff] [blame] | 78 | # define KEX_SHA2_METHODS \ |
| 79 | "diffie-hellman-group-exchange-sha256," \ |
| 80 | "diffie-hellman-group16-sha512," \ |
| 81 | "diffie-hellman-group18-sha512," |
| 82 | # define KEX_SHA2_GROUP14 \ |
| 83 | "diffie-hellman-group14-sha256," |
Darren Tucker | b8ae92d | 2013-06-11 12:10:02 +1000 | [diff] [blame] | 84 | #define SHA2_HMAC_MODES \ |
| 85 | "hmac-sha2-256," \ |
| 86 | "hmac-sha2-512," |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 87 | #else |
djm@openbsd.org | 0e8eeec | 2016-05-02 10:26:04 +0000 | [diff] [blame] | 88 | # define KEX_SHA2_METHODS |
| 89 | # define KEX_SHA2_GROUP14 |
Darren Tucker | b8ae92d | 2013-06-11 12:10:02 +1000 | [diff] [blame] | 90 | # define SHA2_HMAC_MODES |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 91 | #endif |
| 92 | |
Damien Miller | 1f0311c | 2014-05-15 14:24:09 +1000 | [diff] [blame] | 93 | #ifdef WITH_OPENSSL |
Damien Miller | 2f3d1e7 | 2014-08-19 11:14:36 +1000 | [diff] [blame] | 94 | # ifdef HAVE_EVP_SHA256 |
djm@openbsd.org | 0493766 | 2016-09-22 17:52:53 +0000 | [diff] [blame] | 95 | # define KEX_CURVE25519_METHODS \ |
| 96 | "curve25519-sha256," \ |
| 97 | "curve25519-sha256@libssh.org," |
Darren Tucker | d7af0cc | 2014-06-11 07:37:25 +1000 | [diff] [blame] | 98 | # else |
| 99 | # define KEX_CURVE25519_METHODS "" |
| 100 | # endif |
djm@openbsd.org | 9b61130 | 2019-02-23 08:20:43 +0000 | [diff] [blame] | 101 | #define KEX_SERVER_KEX \ |
Darren Tucker | d7af0cc | 2014-06-11 07:37:25 +1000 | [diff] [blame] | 102 | KEX_CURVE25519_METHODS \ |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 103 | KEX_ECDH_METHODS \ |
djm@openbsd.org | 9b61130 | 2019-02-23 08:20:43 +0000 | [diff] [blame] | 104 | KEX_SHA2_METHODS \ |
djm@openbsd.org | 0e8eeec | 2016-05-02 10:26:04 +0000 | [diff] [blame] | 105 | KEX_SHA2_GROUP14 \ |
djm@openbsd.org | bdfd29f | 2015-07-03 03:47:00 +0000 | [diff] [blame] | 106 | "diffie-hellman-group14-sha1" |
Tim Rice | 425a688 | 2006-03-15 20:17:05 -0800 | [diff] [blame] | 107 | |
djm@openbsd.org | 9b61130 | 2019-02-23 08:20:43 +0000 | [diff] [blame] | 108 | #define KEX_CLIENT_KEX KEX_SERVER_KEX |
| 109 | |
Damien Miller | 4e270b0 | 2010-04-16 15:56:21 +1000 | [diff] [blame] | 110 | #define KEX_DEFAULT_PK_ALG \ |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 111 | HOSTKEY_ECDSA_CERT_METHODS \ |
Damien Miller | 5be9d9e | 2013-12-07 11:24:01 +1100 | [diff] [blame] | 112 | "ssh-ed25519-cert-v01@openssh.com," \ |
djm@openbsd.org | 4ba0d54 | 2018-07-03 11:39:54 +0000 | [diff] [blame] | 113 | "rsa-sha2-512-cert-v01@openssh.com," \ |
| 114 | "rsa-sha2-256-cert-v01@openssh.com," \ |
Damien Miller | eb8b60e | 2010-08-31 22:41:14 +1000 | [diff] [blame] | 115 | "ssh-rsa-cert-v01@openssh.com," \ |
Damien Miller | 6af914a | 2010-09-10 11:39:26 +1000 | [diff] [blame] | 116 | HOSTKEY_ECDSA_METHODS \ |
Damien Miller | 5be9d9e | 2013-12-07 11:24:01 +1100 | [diff] [blame] | 117 | "ssh-ed25519," \ |
markus@openbsd.org | 76c9fbb | 2015-12-04 16:41:28 +0000 | [diff] [blame] | 118 | "rsa-sha2-512," \ |
markus@openbsd.org | 3da893f | 2015-12-05 20:53:21 +0000 | [diff] [blame] | 119 | "rsa-sha2-256," \ |
markus@openbsd.org | 76c9fbb | 2015-12-04 16:41:28 +0000 | [diff] [blame] | 120 | "ssh-rsa" |
Damien Miller | 67081b5 | 2009-01-28 16:33:31 +1100 | [diff] [blame] | 121 | |
Darren Tucker | b8ae92d | 2013-06-11 12:10:02 +1000 | [diff] [blame] | 122 | /* the actual algorithms */ |
| 123 | |
Damien Miller | 9235a03 | 2014-04-20 13:17:20 +1000 | [diff] [blame] | 124 | #define KEX_SERVER_ENCRYPT \ |
djm@openbsd.org | a22b9ef | 2015-03-24 09:17:21 +0000 | [diff] [blame] | 125 | "chacha20-poly1305@openssh.com," \ |
| 126 | "aes128-ctr,aes192-ctr,aes256-ctr" \ |
| 127 | AESGCM_CIPHER_MODES |
Damien Miller | 9235a03 | 2014-04-20 13:17:20 +1000 | [diff] [blame] | 128 | |
djm@openbsd.org | 70c1218 | 2017-05-07 23:13:42 +0000 | [diff] [blame] | 129 | #define KEX_CLIENT_ENCRYPT KEX_SERVER_ENCRYPT |
Darren Tucker | b8ae92d | 2013-06-11 12:10:02 +1000 | [diff] [blame] | 130 | |
Damien Miller | 9235a03 | 2014-04-20 13:17:20 +1000 | [diff] [blame] | 131 | #define KEX_SERVER_MAC \ |
Damien Miller | af43a7a | 2012-12-12 10:46:31 +1100 | [diff] [blame] | 132 | "umac-64-etm@openssh.com," \ |
| 133 | "umac-128-etm@openssh.com," \ |
| 134 | "hmac-sha2-256-etm@openssh.com," \ |
| 135 | "hmac-sha2-512-etm@openssh.com," \ |
Damien Miller | 6262d76 | 2014-07-17 09:52:07 +1000 | [diff] [blame] | 136 | "hmac-sha1-etm@openssh.com," \ |
Damien Miller | 9235a03 | 2014-04-20 13:17:20 +1000 | [diff] [blame] | 137 | "umac-64@openssh.com," \ |
| 138 | "umac-128@openssh.com," \ |
| 139 | "hmac-sha2-256," \ |
Damien Miller | 6262d76 | 2014-07-17 09:52:07 +1000 | [diff] [blame] | 140 | "hmac-sha2-512," \ |
| 141 | "hmac-sha1" |
Damien Miller | 9235a03 | 2014-04-20 13:17:20 +1000 | [diff] [blame] | 142 | |
djm@openbsd.org | 714e367 | 2016-02-09 05:30:04 +0000 | [diff] [blame] | 143 | #define KEX_CLIENT_MAC KEX_SERVER_MAC |
Damien Miller | 20bd453 | 2011-08-06 06:17:30 +1000 | [diff] [blame] | 144 | |
djm@openbsd.org | 4cc259b | 2018-09-12 01:34:02 +0000 | [diff] [blame] | 145 | /* Not a KEX value, but here so all the algorithm defaults are together */ |
| 146 | #define SSH_ALLOWED_CA_SIGALGS \ |
Darren Tucker | 1ac98be | 2019-05-17 12:42:17 +1000 | [diff] [blame] | 147 | HOSTKEY_ECDSA_METHODS \ |
djm@openbsd.org | 4cc259b | 2018-09-12 01:34:02 +0000 | [diff] [blame] | 148 | "ssh-ed25519," \ |
| 149 | "rsa-sha2-512," \ |
| 150 | "rsa-sha2-256," \ |
| 151 | "ssh-rsa" |
| 152 | |
djm@openbsd.org | 01a0670 | 2019-10-31 21:17:49 +0000 | [diff] [blame] | 153 | #define PUBKEY_DEFAULT_PK_ALG \ |
Damien Miller | 6a7ef31 | 2019-11-18 22:22:04 +1100 | [diff] [blame] | 154 | USERKEY_ECDSA_SK_CERT_METHODS \ |
Damien Miller | 478f4f9 | 2019-11-19 08:52:24 +1100 | [diff] [blame] | 155 | HOSTKEY_ECDSA_CERT_METHODS \ |
markus@openbsd.org | 2c55744 | 2019-11-12 19:33:08 +0000 | [diff] [blame] | 156 | "sk-ssh-ed25519-cert-v01@openssh.com," \ |
djm@openbsd.org | 01a0670 | 2019-10-31 21:17:49 +0000 | [diff] [blame] | 157 | "ssh-ed25519-cert-v01@openssh.com," \ |
| 158 | "rsa-sha2-512-cert-v01@openssh.com," \ |
| 159 | "rsa-sha2-256-cert-v01@openssh.com," \ |
| 160 | "ssh-rsa-cert-v01@openssh.com," \ |
Damien Miller | 6a7ef31 | 2019-11-18 22:22:04 +1100 | [diff] [blame] | 161 | USERKEY_ECDSA_SK_METHODS \ |
Damien Miller | 478f4f9 | 2019-11-19 08:52:24 +1100 | [diff] [blame] | 162 | HOSTKEY_ECDSA_METHODS \ |
markus@openbsd.org | 2c55744 | 2019-11-12 19:33:08 +0000 | [diff] [blame] | 163 | "sk-ssh-ed25519@openssh.com," \ |
djm@openbsd.org | 01a0670 | 2019-10-31 21:17:49 +0000 | [diff] [blame] | 164 | "ssh-ed25519," \ |
| 165 | "rsa-sha2-512," \ |
| 166 | "rsa-sha2-256," \ |
| 167 | "ssh-rsa" |
| 168 | |
djm@openbsd.org | 714e367 | 2016-02-09 05:30:04 +0000 | [diff] [blame] | 169 | #else /* WITH_OPENSSL */ |
Damien Miller | 1f0311c | 2014-05-15 14:24:09 +1000 | [diff] [blame] | 170 | |
| 171 | #define KEX_SERVER_KEX \ |
djm@openbsd.org | 0493766 | 2016-09-22 17:52:53 +0000 | [diff] [blame] | 172 | "curve25519-sha256," \ |
Damien Miller | 1f0311c | 2014-05-15 14:24:09 +1000 | [diff] [blame] | 173 | "curve25519-sha256@libssh.org" |
| 174 | #define KEX_DEFAULT_PK_ALG \ |
| 175 | "ssh-ed25519-cert-v01@openssh.com," \ |
| 176 | "ssh-ed25519" |
djm@openbsd.org | 01a0670 | 2019-10-31 21:17:49 +0000 | [diff] [blame] | 177 | #define PUBKEY_DEFAULT_PK_ALG KEX_DEFAULT_PK_ALG |
Damien Miller | 1f0311c | 2014-05-15 14:24:09 +1000 | [diff] [blame] | 178 | #define KEX_SERVER_ENCRYPT \ |
jsg@openbsd.org | 39bfbf7 | 2015-04-21 07:01:00 +0000 | [diff] [blame] | 179 | "chacha20-poly1305@openssh.com," \ |
djm@openbsd.org | a22b9ef | 2015-03-24 09:17:21 +0000 | [diff] [blame] | 180 | "aes128-ctr,aes192-ctr,aes256-ctr" |
Damien Miller | 1f0311c | 2014-05-15 14:24:09 +1000 | [diff] [blame] | 181 | #define KEX_SERVER_MAC \ |
Damien Miller | 294c58a | 2014-05-15 14:35:03 +1000 | [diff] [blame] | 182 | "umac-64-etm@openssh.com," \ |
| 183 | "umac-128-etm@openssh.com," \ |
Damien Miller | 1f0311c | 2014-05-15 14:24:09 +1000 | [diff] [blame] | 184 | "hmac-sha2-256-etm@openssh.com," \ |
| 185 | "hmac-sha2-512-etm@openssh.com," \ |
Damien Miller | 6262d76 | 2014-07-17 09:52:07 +1000 | [diff] [blame] | 186 | "hmac-sha1-etm@openssh.com," \ |
Damien Miller | 294c58a | 2014-05-15 14:35:03 +1000 | [diff] [blame] | 187 | "umac-64@openssh.com," \ |
| 188 | "umac-128@openssh.com," \ |
Damien Miller | 1f0311c | 2014-05-15 14:24:09 +1000 | [diff] [blame] | 189 | "hmac-sha2-256," \ |
Damien Miller | 6262d76 | 2014-07-17 09:52:07 +1000 | [diff] [blame] | 190 | "hmac-sha2-512," \ |
| 191 | "hmac-sha1" |
Damien Miller | 1f0311c | 2014-05-15 14:24:09 +1000 | [diff] [blame] | 192 | |
| 193 | #define KEX_CLIENT_KEX KEX_SERVER_KEX |
| 194 | #define KEX_CLIENT_ENCRYPT KEX_SERVER_ENCRYPT |
Damien Miller | 6262d76 | 2014-07-17 09:52:07 +1000 | [diff] [blame] | 195 | #define KEX_CLIENT_MAC KEX_SERVER_MAC |
Damien Miller | 1f0311c | 2014-05-15 14:24:09 +1000 | [diff] [blame] | 196 | |
djm@openbsd.org | 4cc259b | 2018-09-12 01:34:02 +0000 | [diff] [blame] | 197 | #define SSH_ALLOWED_CA_SIGALGS "ssh-ed25519" |
| 198 | |
Damien Miller | 1f0311c | 2014-05-15 14:24:09 +1000 | [diff] [blame] | 199 | #endif /* WITH_OPENSSL */ |
| 200 | |
djm@openbsd.org | 0082fba | 2016-09-28 16:33:06 +0000 | [diff] [blame] | 201 | #define KEX_DEFAULT_COMP "none,zlib@openssh.com" |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 202 | #define KEX_DEFAULT_LANG "" |
| 203 | |
Damien Miller | 9235a03 | 2014-04-20 13:17:20 +1000 | [diff] [blame] | 204 | #define KEX_CLIENT \ |
| 205 | KEX_CLIENT_KEX, \ |
| 206 | KEX_DEFAULT_PK_ALG, \ |
| 207 | KEX_CLIENT_ENCRYPT, \ |
| 208 | KEX_CLIENT_ENCRYPT, \ |
| 209 | KEX_CLIENT_MAC, \ |
| 210 | KEX_CLIENT_MAC, \ |
| 211 | KEX_DEFAULT_COMP, \ |
| 212 | KEX_DEFAULT_COMP, \ |
| 213 | KEX_DEFAULT_LANG, \ |
Damien Miller | 1383bd8 | 2000-04-06 12:32:37 +1000 | [diff] [blame] | 214 | KEX_DEFAULT_LANG |
Damien Miller | 9235a03 | 2014-04-20 13:17:20 +1000 | [diff] [blame] | 215 | |
| 216 | #define KEX_SERVER \ |
| 217 | KEX_SERVER_KEX, \ |
| 218 | KEX_DEFAULT_PK_ALG, \ |
| 219 | KEX_SERVER_ENCRYPT, \ |
| 220 | KEX_SERVER_ENCRYPT, \ |
| 221 | KEX_SERVER_MAC, \ |
| 222 | KEX_SERVER_MAC, \ |
| 223 | KEX_DEFAULT_COMP, \ |
| 224 | KEX_DEFAULT_COMP, \ |
| 225 | KEX_DEFAULT_LANG, \ |
| 226 | KEX_DEFAULT_LANG |
| 227 | |