2 * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved.
3 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
4 * Copyright 2005 Nokia. All rights reserved.
6 * Licensed under the Apache License 2.0 (the "License"). You may not use
7 * this file except in compliance with the License. You can obtain a copy
8 * in the file LICENSE in the source distribution or at
9 * https://www.openssl.org/source/license.html
14 #include <openssl/objects.h>
15 #include <openssl/comp.h>
16 #include <openssl/engine.h>
17 #include <openssl/crypto.h>
18 #include <openssl/conf.h>
19 #include <openssl/trace.h>
20 #include "internal/nelem.h"
21 #include "ssl_local.h"
22 #include "internal/thread_once.h"
23 #include "internal/cryptlib.h"
24 #include "internal/comp.h"
25 #include "internal/ssl_unwrap.h"
27 /* NB: make sure indices in these tables match values above */
34 /* Table of NIDs for each cipher */
35 static const ssl_cipher_table ssl_cipher_table_cipher
[SSL_ENC_NUM_IDX
] = {
36 {SSL_DES
, NID_des_cbc
}, /* SSL_ENC_DES_IDX 0 */
37 {SSL_3DES
, NID_des_ede3_cbc
}, /* SSL_ENC_3DES_IDX 1 */
38 {SSL_RC4
, NID_rc4
}, /* SSL_ENC_RC4_IDX 2 */
39 {SSL_RC2
, NID_rc2_cbc
}, /* SSL_ENC_RC2_IDX 3 */
40 {SSL_IDEA
, NID_idea_cbc
}, /* SSL_ENC_IDEA_IDX 4 */
41 {SSL_eNULL
, NID_undef
}, /* SSL_ENC_NULL_IDX 5 */
42 {SSL_AES128
, NID_aes_128_cbc
}, /* SSL_ENC_AES128_IDX 6 */
43 {SSL_AES256
, NID_aes_256_cbc
}, /* SSL_ENC_AES256_IDX 7 */
44 {SSL_CAMELLIA128
, NID_camellia_128_cbc
}, /* SSL_ENC_CAMELLIA128_IDX 8 */
45 {SSL_CAMELLIA256
, NID_camellia_256_cbc
}, /* SSL_ENC_CAMELLIA256_IDX 9 */
46 {SSL_eGOST2814789CNT
, NID_gost89_cnt
}, /* SSL_ENC_GOST89_IDX 10 */
47 {SSL_SEED
, NID_seed_cbc
}, /* SSL_ENC_SEED_IDX 11 */
48 {SSL_AES128GCM
, NID_aes_128_gcm
}, /* SSL_ENC_AES128GCM_IDX 12 */
49 {SSL_AES256GCM
, NID_aes_256_gcm
}, /* SSL_ENC_AES256GCM_IDX 13 */
50 {SSL_AES128CCM
, NID_aes_128_ccm
}, /* SSL_ENC_AES128CCM_IDX 14 */
51 {SSL_AES256CCM
, NID_aes_256_ccm
}, /* SSL_ENC_AES256CCM_IDX 15 */
52 {SSL_AES128CCM8
, NID_aes_128_ccm
}, /* SSL_ENC_AES128CCM8_IDX 16 */
53 {SSL_AES256CCM8
, NID_aes_256_ccm
}, /* SSL_ENC_AES256CCM8_IDX 17 */
54 {SSL_eGOST2814789CNT12
, NID_gost89_cnt_12
}, /* SSL_ENC_GOST8912_IDX 18 */
55 {SSL_CHACHA20POLY1305
, NID_chacha20_poly1305
}, /* SSL_ENC_CHACHA_IDX 19 */
56 {SSL_ARIA128GCM
, NID_aria_128_gcm
}, /* SSL_ENC_ARIA128GCM_IDX 20 */
57 {SSL_ARIA256GCM
, NID_aria_256_gcm
}, /* SSL_ENC_ARIA256GCM_IDX 21 */
58 {SSL_MAGMA
, NID_magma_ctr_acpkm
}, /* SSL_ENC_MAGMA_IDX */
59 {SSL_KUZNYECHIK
, NID_kuznyechik_ctr_acpkm
}, /* SSL_ENC_KUZNYECHIK_IDX */
62 /* NB: make sure indices in this table matches values above */
63 static const ssl_cipher_table ssl_cipher_table_mac
[SSL_MD_NUM_IDX
] = {
64 {SSL_MD5
, NID_md5
}, /* SSL_MD_MD5_IDX 0 */
65 {SSL_SHA1
, NID_sha1
}, /* SSL_MD_SHA1_IDX 1 */
66 {SSL_GOST94
, NID_id_GostR3411_94
}, /* SSL_MD_GOST94_IDX 2 */
67 {SSL_GOST89MAC
, NID_id_Gost28147_89_MAC
}, /* SSL_MD_GOST89MAC_IDX 3 */
68 {SSL_SHA256
, NID_sha256
}, /* SSL_MD_SHA256_IDX 4 */
69 {SSL_SHA384
, NID_sha384
}, /* SSL_MD_SHA384_IDX 5 */
70 {SSL_GOST12_256
, NID_id_GostR3411_2012_256
}, /* SSL_MD_GOST12_256_IDX 6 */
71 {SSL_GOST89MAC12
, NID_gost_mac_12
}, /* SSL_MD_GOST89MAC12_IDX 7 */
72 {SSL_GOST12_512
, NID_id_GostR3411_2012_512
}, /* SSL_MD_GOST12_512_IDX 8 */
73 {0, NID_md5_sha1
}, /* SSL_MD_MD5_SHA1_IDX 9 */
74 {0, NID_sha224
}, /* SSL_MD_SHA224_IDX 10 */
75 {0, NID_sha512
}, /* SSL_MD_SHA512_IDX 11 */
76 {SSL_MAGMAOMAC
, NID_magma_mac
}, /* sSL_MD_MAGMAOMAC_IDX */
77 {SSL_KUZNYECHIKOMAC
, NID_kuznyechik_mac
} /* SSL_MD_KUZNYECHIKOMAC_IDX */
81 static const ssl_cipher_table ssl_cipher_table_kx
[] = {
82 {SSL_kRSA
, NID_kx_rsa
},
83 {SSL_kECDHE
, NID_kx_ecdhe
},
84 {SSL_kDHE
, NID_kx_dhe
},
85 {SSL_kECDHEPSK
, NID_kx_ecdhe_psk
},
86 {SSL_kDHEPSK
, NID_kx_dhe_psk
},
87 {SSL_kRSAPSK
, NID_kx_rsa_psk
},
88 {SSL_kPSK
, NID_kx_psk
},
89 {SSL_kSRP
, NID_kx_srp
},
90 {SSL_kGOST
, NID_kx_gost
},
91 {SSL_kGOST18
, NID_kx_gost18
},
92 {SSL_kANY
, NID_kx_any
}
95 static const ssl_cipher_table ssl_cipher_table_auth
[] = {
96 {SSL_aRSA
, NID_auth_rsa
},
97 {SSL_aECDSA
, NID_auth_ecdsa
},
98 {SSL_aPSK
, NID_auth_psk
},
99 {SSL_aDSS
, NID_auth_dss
},
100 {SSL_aGOST01
, NID_auth_gost01
},
101 {SSL_aGOST12
, NID_auth_gost12
},
102 {SSL_aSRP
, NID_auth_srp
},
103 {SSL_aNULL
, NID_auth_null
},
104 {SSL_aANY
, NID_auth_any
}
108 /* Utility function for table lookup */
109 static int ssl_cipher_info_find(const ssl_cipher_table
*table
,
110 size_t table_cnt
, uint32_t mask
)
113 for (i
= 0; i
< table_cnt
; i
++, table
++) {
114 if (table
->mask
== mask
)
120 #define ssl_cipher_info_lookup(table, x) \
121 ssl_cipher_info_find(table, OSSL_NELEM(table), x)
124 * PKEY_TYPE for GOST89MAC is known in advance, but, because implementation
125 * is engine-provided, we'll fill it only if corresponding EVP_PKEY_METHOD is
128 static const int default_mac_pkey_id
[SSL_MD_NUM_IDX
] = {
129 /* MD5, SHA, GOST94, MAC89 */
130 EVP_PKEY_HMAC
, EVP_PKEY_HMAC
, EVP_PKEY_HMAC
, NID_undef
,
131 /* SHA256, SHA384, GOST2012_256, MAC89-12 */
132 EVP_PKEY_HMAC
, EVP_PKEY_HMAC
, EVP_PKEY_HMAC
, NID_undef
,
135 /* MD5/SHA1, SHA224, SHA512, MAGMAOMAC, KUZNYECHIKOMAC */
136 NID_undef
, NID_undef
, NID_undef
, NID_undef
, NID_undef
140 #define CIPHER_KILL 2
143 #define CIPHER_SPECIAL 5
145 * Bump the ciphers to the top of the list.
146 * This rule isn't currently supported by the public cipherstring API.
148 #define CIPHER_BUMP 6
150 typedef struct cipher_order_st
{
151 const SSL_CIPHER
*cipher
;
154 struct cipher_order_st
*next
, *prev
;
157 static const SSL_CIPHER cipher_aliases
[] = {
158 /* "ALL" doesn't include eNULL (must be specifically enabled) */
159 {0, SSL_TXT_ALL
, NULL
, 0, 0, 0, ~SSL_eNULL
},
160 /* "COMPLEMENTOFALL" */
161 {0, SSL_TXT_CMPALL
, NULL
, 0, 0, 0, SSL_eNULL
},
164 * "COMPLEMENTOFDEFAULT" (does *not* include ciphersuites not found in
167 {0, SSL_TXT_CMPDEF
, NULL
, 0, 0, 0, 0, 0, 0, 0, 0, 0, SSL_NOT_DEFAULT
},
170 * key exchange aliases (some of those using only a single bit here
171 * combine multiple key exchange algs according to the RFCs, e.g. kDHE
172 * combines DHE_DSS and DHE_RSA)
174 {0, SSL_TXT_kRSA
, NULL
, 0, SSL_kRSA
},
176 {0, SSL_TXT_kEDH
, NULL
, 0, SSL_kDHE
},
177 {0, SSL_TXT_kDHE
, NULL
, 0, SSL_kDHE
},
178 {0, SSL_TXT_DH
, NULL
, 0, SSL_kDHE
},
180 {0, SSL_TXT_kEECDH
, NULL
, 0, SSL_kECDHE
},
181 {0, SSL_TXT_kECDHE
, NULL
, 0, SSL_kECDHE
},
182 {0, SSL_TXT_ECDH
, NULL
, 0, SSL_kECDHE
},
184 {0, SSL_TXT_kPSK
, NULL
, 0, SSL_kPSK
},
185 {0, SSL_TXT_kRSAPSK
, NULL
, 0, SSL_kRSAPSK
},
186 {0, SSL_TXT_kECDHEPSK
, NULL
, 0, SSL_kECDHEPSK
},
187 {0, SSL_TXT_kDHEPSK
, NULL
, 0, SSL_kDHEPSK
},
188 {0, SSL_TXT_kSRP
, NULL
, 0, SSL_kSRP
},
189 {0, SSL_TXT_kGOST
, NULL
, 0, SSL_kGOST
},
190 {0, SSL_TXT_kGOST18
, NULL
, 0, SSL_kGOST18
},
192 /* server authentication aliases */
193 {0, SSL_TXT_aRSA
, NULL
, 0, 0, SSL_aRSA
},
194 {0, SSL_TXT_aDSS
, NULL
, 0, 0, SSL_aDSS
},
195 {0, SSL_TXT_DSS
, NULL
, 0, 0, SSL_aDSS
},
196 {0, SSL_TXT_aNULL
, NULL
, 0, 0, SSL_aNULL
},
197 {0, SSL_TXT_aECDSA
, NULL
, 0, 0, SSL_aECDSA
},
198 {0, SSL_TXT_ECDSA
, NULL
, 0, 0, SSL_aECDSA
},
199 {0, SSL_TXT_aPSK
, NULL
, 0, 0, SSL_aPSK
},
200 {0, SSL_TXT_aGOST01
, NULL
, 0, 0, SSL_aGOST01
},
201 {0, SSL_TXT_aGOST12
, NULL
, 0, 0, SSL_aGOST12
},
202 {0, SSL_TXT_aGOST
, NULL
, 0, 0, SSL_aGOST01
| SSL_aGOST12
},
203 {0, SSL_TXT_aSRP
, NULL
, 0, 0, SSL_aSRP
},
205 /* aliases combining key exchange and server authentication */
206 {0, SSL_TXT_EDH
, NULL
, 0, SSL_kDHE
, ~SSL_aNULL
},
207 {0, SSL_TXT_DHE
, NULL
, 0, SSL_kDHE
, ~SSL_aNULL
},
208 {0, SSL_TXT_EECDH
, NULL
, 0, SSL_kECDHE
, ~SSL_aNULL
},
209 {0, SSL_TXT_ECDHE
, NULL
, 0, SSL_kECDHE
, ~SSL_aNULL
},
210 {0, SSL_TXT_NULL
, NULL
, 0, 0, 0, SSL_eNULL
},
211 {0, SSL_TXT_RSA
, NULL
, 0, SSL_kRSA
, SSL_aRSA
},
212 {0, SSL_TXT_ADH
, NULL
, 0, SSL_kDHE
, SSL_aNULL
},
213 {0, SSL_TXT_AECDH
, NULL
, 0, SSL_kECDHE
, SSL_aNULL
},
214 {0, SSL_TXT_PSK
, NULL
, 0, SSL_PSK
},
215 {0, SSL_TXT_SRP
, NULL
, 0, SSL_kSRP
},
217 /* symmetric encryption aliases */
218 {0, SSL_TXT_3DES
, NULL
, 0, 0, 0, SSL_3DES
},
219 {0, SSL_TXT_RC4
, NULL
, 0, 0, 0, SSL_RC4
},
220 {0, SSL_TXT_RC2
, NULL
, 0, 0, 0, SSL_RC2
},
221 {0, SSL_TXT_IDEA
, NULL
, 0, 0, 0, SSL_IDEA
},
222 {0, SSL_TXT_SEED
, NULL
, 0, 0, 0, SSL_SEED
},
223 {0, SSL_TXT_eNULL
, NULL
, 0, 0, 0, SSL_eNULL
},
224 {0, SSL_TXT_GOST
, NULL
, 0, 0, 0,
225 SSL_eGOST2814789CNT
| SSL_eGOST2814789CNT12
| SSL_MAGMA
| SSL_KUZNYECHIK
},
226 {0, SSL_TXT_AES128
, NULL
, 0, 0, 0,
227 SSL_AES128
| SSL_AES128GCM
| SSL_AES128CCM
| SSL_AES128CCM8
},
228 {0, SSL_TXT_AES256
, NULL
, 0, 0, 0,
229 SSL_AES256
| SSL_AES256GCM
| SSL_AES256CCM
| SSL_AES256CCM8
},
230 {0, SSL_TXT_AES
, NULL
, 0, 0, 0, SSL_AES
},
231 {0, SSL_TXT_AES_GCM
, NULL
, 0, 0, 0, SSL_AES128GCM
| SSL_AES256GCM
},
232 {0, SSL_TXT_AES_CCM
, NULL
, 0, 0, 0,
233 SSL_AES128CCM
| SSL_AES256CCM
| SSL_AES128CCM8
| SSL_AES256CCM8
},
234 {0, SSL_TXT_AES_CCM_8
, NULL
, 0, 0, 0, SSL_AES128CCM8
| SSL_AES256CCM8
},
235 {0, SSL_TXT_CAMELLIA128
, NULL
, 0, 0, 0, SSL_CAMELLIA128
},
236 {0, SSL_TXT_CAMELLIA256
, NULL
, 0, 0, 0, SSL_CAMELLIA256
},
237 {0, SSL_TXT_CAMELLIA
, NULL
, 0, 0, 0, SSL_CAMELLIA
},
238 {0, SSL_TXT_CHACHA20
, NULL
, 0, 0, 0, SSL_CHACHA20
},
239 {0, SSL_TXT_GOST2012_GOST8912_GOST8912
, NULL
, 0, 0, 0, SSL_eGOST2814789CNT12
},
241 {0, SSL_TXT_ARIA
, NULL
, 0, 0, 0, SSL_ARIA
},
242 {0, SSL_TXT_ARIA_GCM
, NULL
, 0, 0, 0, SSL_ARIA128GCM
| SSL_ARIA256GCM
},
243 {0, SSL_TXT_ARIA128
, NULL
, 0, 0, 0, SSL_ARIA128GCM
},
244 {0, SSL_TXT_ARIA256
, NULL
, 0, 0, 0, SSL_ARIA256GCM
},
245 {0, SSL_TXT_CBC
, NULL
, 0, 0, 0, SSL_CBC
},
248 {0, SSL_TXT_MD5
, NULL
, 0, 0, 0, 0, SSL_MD5
},
249 {0, SSL_TXT_SHA1
, NULL
, 0, 0, 0, 0, SSL_SHA1
},
250 {0, SSL_TXT_SHA
, NULL
, 0, 0, 0, 0, SSL_SHA1
},
251 {0, SSL_TXT_GOST94
, NULL
, 0, 0, 0, 0, SSL_GOST94
},
252 {0, SSL_TXT_GOST89MAC
, NULL
, 0, 0, 0, 0, SSL_GOST89MAC
| SSL_GOST89MAC12
},
253 {0, SSL_TXT_SHA256
, NULL
, 0, 0, 0, 0, SSL_SHA256
},
254 {0, SSL_TXT_SHA384
, NULL
, 0, 0, 0, 0, SSL_SHA384
},
255 {0, SSL_TXT_GOST12
, NULL
, 0, 0, 0, 0, SSL_GOST12_256
},
257 /* protocol version aliases */
258 {0, SSL_TXT_SSLV3
, NULL
, 0, 0, 0, 0, 0, SSL3_VERSION
},
259 {0, SSL_TXT_TLSV1
, NULL
, 0, 0, 0, 0, 0, TLS1_VERSION
},
260 {0, "TLSv1.0", NULL
, 0, 0, 0, 0, 0, TLS1_VERSION
},
261 {0, SSL_TXT_TLSV1_2
, NULL
, 0, 0, 0, 0, 0, TLS1_2_VERSION
},
263 /* strength classes */
264 {0, SSL_TXT_LOW
, NULL
, 0, 0, 0, 0, 0, 0, 0, 0, 0, SSL_LOW
},
265 {0, SSL_TXT_MEDIUM
, NULL
, 0, 0, 0, 0, 0, 0, 0, 0, 0, SSL_MEDIUM
},
266 {0, SSL_TXT_HIGH
, NULL
, 0, 0, 0, 0, 0, 0, 0, 0, 0, SSL_HIGH
},
267 /* FIPS 140-2 approved ciphersuite */
268 {0, SSL_TXT_FIPS
, NULL
, 0, 0, 0, ~SSL_eNULL
, 0, 0, 0, 0, 0, SSL_FIPS
},
270 /* "EDH-" aliases to "DHE-" labels (for backward compatibility) */
271 {0, SSL3_TXT_EDH_DSS_DES_192_CBC3_SHA
, NULL
, 0,
272 SSL_kDHE
, SSL_aDSS
, SSL_3DES
, SSL_SHA1
, 0, 0, 0, 0, SSL_HIGH
| SSL_FIPS
},
273 {0, SSL3_TXT_EDH_RSA_DES_192_CBC3_SHA
, NULL
, 0,
274 SSL_kDHE
, SSL_aRSA
, SSL_3DES
, SSL_SHA1
, 0, 0, 0, 0, SSL_HIGH
| SSL_FIPS
},
279 * Search for public key algorithm with given name and return its pkey_id if
280 * it is available. Otherwise return 0
282 #ifdef OPENSSL_NO_ENGINE
284 static int get_optional_pkey_id(const char *pkey_name
)
286 const EVP_PKEY_ASN1_METHOD
*ameth
;
288 ameth
= EVP_PKEY_asn1_find_str(NULL
, pkey_name
, -1);
289 if (ameth
&& EVP_PKEY_asn1_get0_info(&pkey_id
, NULL
, NULL
, NULL
, NULL
,
297 static int get_optional_pkey_id(const char *pkey_name
)
299 const EVP_PKEY_ASN1_METHOD
*ameth
;
300 ENGINE
*tmpeng
= NULL
;
302 ameth
= EVP_PKEY_asn1_find_str(&tmpeng
, pkey_name
, -1);
304 if (EVP_PKEY_asn1_get0_info(&pkey_id
, NULL
, NULL
, NULL
, NULL
,
308 tls_engine_finish(tmpeng
);
314 int ssl_load_ciphers(SSL_CTX
*ctx
)
317 const ssl_cipher_table
*t
;
318 EVP_KEYEXCH
*kex
= NULL
;
319 EVP_SIGNATURE
*sig
= NULL
;
321 ctx
->disabled_enc_mask
= 0;
322 for (i
= 0, t
= ssl_cipher_table_cipher
; i
< SSL_ENC_NUM_IDX
; i
++, t
++) {
323 if (t
->nid
!= NID_undef
) {
324 const EVP_CIPHER
*cipher
325 = ssl_evp_cipher_fetch(ctx
->libctx
, t
->nid
, ctx
->propq
);
327 ctx
->ssl_cipher_methods
[i
] = cipher
;
329 ctx
->disabled_enc_mask
|= t
->mask
;
332 ctx
->disabled_mac_mask
= 0;
333 for (i
= 0, t
= ssl_cipher_table_mac
; i
< SSL_MD_NUM_IDX
; i
++, t
++) {
335 = ssl_evp_md_fetch(ctx
->libctx
, t
->nid
, ctx
->propq
);
337 ctx
->ssl_digest_methods
[i
] = md
;
339 ctx
->disabled_mac_mask
|= t
->mask
;
341 int tmpsize
= EVP_MD_get_size(md
);
343 if (!ossl_assert(tmpsize
> 0))
345 ctx
->ssl_mac_secret_size
[i
] = tmpsize
;
349 ctx
->disabled_mkey_mask
= 0;
350 ctx
->disabled_auth_mask
= 0;
353 * We ignore any errors from the fetches below. They are expected to fail
354 * if these algorithms are not available.
357 sig
= EVP_SIGNATURE_fetch(ctx
->libctx
, "DSA", ctx
->propq
);
359 ctx
->disabled_auth_mask
|= SSL_aDSS
;
361 EVP_SIGNATURE_free(sig
);
362 kex
= EVP_KEYEXCH_fetch(ctx
->libctx
, "DH", ctx
->propq
);
364 ctx
->disabled_mkey_mask
|= SSL_kDHE
| SSL_kDHEPSK
;
366 EVP_KEYEXCH_free(kex
);
367 kex
= EVP_KEYEXCH_fetch(ctx
->libctx
, "ECDH", ctx
->propq
);
369 ctx
->disabled_mkey_mask
|= SSL_kECDHE
| SSL_kECDHEPSK
;
371 EVP_KEYEXCH_free(kex
);
372 sig
= EVP_SIGNATURE_fetch(ctx
->libctx
, "ECDSA", ctx
->propq
);
374 ctx
->disabled_auth_mask
|= SSL_aECDSA
;
376 EVP_SIGNATURE_free(sig
);
379 #ifdef OPENSSL_NO_PSK
380 ctx
->disabled_mkey_mask
|= SSL_PSK
;
381 ctx
->disabled_auth_mask
|= SSL_aPSK
;
383 #ifdef OPENSSL_NO_SRP
384 ctx
->disabled_mkey_mask
|= SSL_kSRP
;
388 * Check for presence of GOST 34.10 algorithms, and if they are not
389 * present, disable appropriate auth and key exchange
391 memcpy(ctx
->ssl_mac_pkey_id
, default_mac_pkey_id
,
392 sizeof(ctx
->ssl_mac_pkey_id
));
394 ctx
->ssl_mac_pkey_id
[SSL_MD_GOST89MAC_IDX
] =
395 get_optional_pkey_id(SN_id_Gost28147_89_MAC
);
396 if (ctx
->ssl_mac_pkey_id
[SSL_MD_GOST89MAC_IDX
])
397 ctx
->ssl_mac_secret_size
[SSL_MD_GOST89MAC_IDX
] = 32;
399 ctx
->disabled_mac_mask
|= SSL_GOST89MAC
;
401 ctx
->ssl_mac_pkey_id
[SSL_MD_GOST89MAC12_IDX
] =
402 get_optional_pkey_id(SN_gost_mac_12
);
403 if (ctx
->ssl_mac_pkey_id
[SSL_MD_GOST89MAC12_IDX
])
404 ctx
->ssl_mac_secret_size
[SSL_MD_GOST89MAC12_IDX
] = 32;
406 ctx
->disabled_mac_mask
|= SSL_GOST89MAC12
;
408 ctx
->ssl_mac_pkey_id
[SSL_MD_MAGMAOMAC_IDX
] =
409 get_optional_pkey_id(SN_magma_mac
);
410 if (ctx
->ssl_mac_pkey_id
[SSL_MD_MAGMAOMAC_IDX
])
411 ctx
->ssl_mac_secret_size
[SSL_MD_MAGMAOMAC_IDX
] = 32;
413 ctx
->disabled_mac_mask
|= SSL_MAGMAOMAC
;
415 ctx
->ssl_mac_pkey_id
[SSL_MD_KUZNYECHIKOMAC_IDX
] =
416 get_optional_pkey_id(SN_kuznyechik_mac
);
417 if (ctx
->ssl_mac_pkey_id
[SSL_MD_KUZNYECHIKOMAC_IDX
])
418 ctx
->ssl_mac_secret_size
[SSL_MD_KUZNYECHIKOMAC_IDX
] = 32;
420 ctx
->disabled_mac_mask
|= SSL_KUZNYECHIKOMAC
;
422 if (!get_optional_pkey_id(SN_id_GostR3410_2001
))
423 ctx
->disabled_auth_mask
|= SSL_aGOST01
| SSL_aGOST12
;
424 if (!get_optional_pkey_id(SN_id_GostR3410_2012_256
))
425 ctx
->disabled_auth_mask
|= SSL_aGOST12
;
426 if (!get_optional_pkey_id(SN_id_GostR3410_2012_512
))
427 ctx
->disabled_auth_mask
|= SSL_aGOST12
;
429 * Disable GOST key exchange if no GOST signature algs are available *
431 if ((ctx
->disabled_auth_mask
& (SSL_aGOST01
| SSL_aGOST12
)) ==
432 (SSL_aGOST01
| SSL_aGOST12
))
433 ctx
->disabled_mkey_mask
|= SSL_kGOST
;
435 if ((ctx
->disabled_auth_mask
& SSL_aGOST12
) == SSL_aGOST12
)
436 ctx
->disabled_mkey_mask
|= SSL_kGOST18
;
441 int ssl_cipher_get_evp_cipher(SSL_CTX
*ctx
, const SSL_CIPHER
*sslc
,
442 const EVP_CIPHER
**enc
)
444 int i
= ssl_cipher_info_lookup(ssl_cipher_table_cipher
,
445 sslc
->algorithm_enc
);
450 if (i
== SSL_ENC_NULL_IDX
) {
452 * We assume we don't care about this coming from an ENGINE so
453 * just do a normal EVP_CIPHER_fetch instead of
454 * ssl_evp_cipher_fetch()
456 *enc
= EVP_CIPHER_fetch(ctx
->libctx
, "NULL", ctx
->propq
);
460 const EVP_CIPHER
*cipher
= ctx
->ssl_cipher_methods
[i
];
463 || !ssl_evp_cipher_up_ref(cipher
))
465 *enc
= ctx
->ssl_cipher_methods
[i
];
471 int ssl_cipher_get_evp_md_mac(SSL_CTX
*ctx
, const SSL_CIPHER
*sslc
,
473 int *mac_pkey_type
, size_t *mac_secret_size
)
475 int i
= ssl_cipher_info_lookup(ssl_cipher_table_mac
, sslc
->algorithm_mac
);
479 if (mac_pkey_type
!= NULL
)
480 *mac_pkey_type
= NID_undef
;
481 if (mac_secret_size
!= NULL
)
482 *mac_secret_size
= 0;
484 const EVP_MD
*digest
= ctx
->ssl_digest_methods
[i
];
486 if (digest
== NULL
|| !ssl_evp_md_up_ref(digest
))
490 if (mac_pkey_type
!= NULL
)
491 *mac_pkey_type
= ctx
->ssl_mac_pkey_id
[i
];
492 if (mac_secret_size
!= NULL
)
493 *mac_secret_size
= ctx
->ssl_mac_secret_size
[i
];
498 int ssl_cipher_get_evp(SSL_CTX
*ctx
, const SSL_SESSION
*s
,
499 const EVP_CIPHER
**enc
, const EVP_MD
**md
,
500 int *mac_pkey_type
, size_t *mac_secret_size
,
501 SSL_COMP
**comp
, int use_etm
)
511 STACK_OF(SSL_COMP
) *comp_methods
;
514 ctmp
.id
= s
->compress_meth
;
515 comp_methods
= SSL_COMP_get_compression_methods();
516 if (comp_methods
!= NULL
) {
517 i
= sk_SSL_COMP_find(comp_methods
, &ctmp
);
519 *comp
= sk_SSL_COMP_value(comp_methods
, i
);
521 /* If were only interested in comp then return success */
522 if ((enc
== NULL
) && (md
== NULL
))
526 if ((enc
== NULL
) || (md
== NULL
))
529 if (!ssl_cipher_get_evp_cipher(ctx
, c
, enc
))
532 if (!ssl_cipher_get_evp_md_mac(ctx
, c
, md
, mac_pkey_type
,
534 ssl_evp_cipher_free(*enc
);
540 || (EVP_CIPHER_get_flags(*enc
) & EVP_CIPH_FLAG_AEAD_CIPHER
))
541 && (c
->algorithm_mac
== SSL_AEAD
542 || mac_pkey_type
== NULL
|| *mac_pkey_type
!= NID_undef
)) {
543 const EVP_CIPHER
*evp
= NULL
;
546 || s
->ssl_version
>> 8 != TLS1_VERSION_MAJOR
547 || s
->ssl_version
< TLS1_VERSION
)
550 if (c
->algorithm_enc
== SSL_RC4
551 && c
->algorithm_mac
== SSL_MD5
)
552 evp
= ssl_evp_cipher_fetch(ctx
->libctx
, NID_rc4_hmac_md5
,
554 else if (c
->algorithm_enc
== SSL_AES128
555 && c
->algorithm_mac
== SSL_SHA1
)
556 evp
= ssl_evp_cipher_fetch(ctx
->libctx
,
557 NID_aes_128_cbc_hmac_sha1
,
559 else if (c
->algorithm_enc
== SSL_AES256
560 && c
->algorithm_mac
== SSL_SHA1
)
561 evp
= ssl_evp_cipher_fetch(ctx
->libctx
,
562 NID_aes_256_cbc_hmac_sha1
,
564 else if (c
->algorithm_enc
== SSL_AES128
565 && c
->algorithm_mac
== SSL_SHA256
)
566 evp
= ssl_evp_cipher_fetch(ctx
->libctx
,
567 NID_aes_128_cbc_hmac_sha256
,
569 else if (c
->algorithm_enc
== SSL_AES256
570 && c
->algorithm_mac
== SSL_SHA256
)
571 evp
= ssl_evp_cipher_fetch(ctx
->libctx
,
572 NID_aes_256_cbc_hmac_sha256
,
576 ssl_evp_cipher_free(*enc
);
577 ssl_evp_md_free(*md
);
587 const EVP_MD
*ssl_md(SSL_CTX
*ctx
, int idx
)
589 idx
&= SSL_HANDSHAKE_MAC_MASK
;
590 if (idx
< 0 || idx
>= SSL_MD_NUM_IDX
)
592 return ctx
->ssl_digest_methods
[idx
];
595 const EVP_MD
*ssl_handshake_md(SSL_CONNECTION
*s
)
597 return ssl_md(SSL_CONNECTION_GET_CTX(s
), ssl_get_algorithm2(s
));
600 const EVP_MD
*ssl_prf_md(SSL_CONNECTION
*s
)
602 return ssl_md(SSL_CONNECTION_GET_CTX(s
),
603 ssl_get_algorithm2(s
) >> TLS1_PRF_DGST_SHIFT
);
607 #define ITEM_SEP(a) \
608 (((a) == ':') || ((a) == ' ') || ((a) == ';') || ((a) == ','))
610 static void ll_append_tail(CIPHER_ORDER
**head
, CIPHER_ORDER
*curr
,
617 if (curr
->prev
!= NULL
)
618 curr
->prev
->next
= curr
->next
;
619 if (curr
->next
!= NULL
)
620 curr
->next
->prev
= curr
->prev
;
621 (*tail
)->next
= curr
;
627 static void ll_append_head(CIPHER_ORDER
**head
, CIPHER_ORDER
*curr
,
634 if (curr
->next
!= NULL
)
635 curr
->next
->prev
= curr
->prev
;
636 if (curr
->prev
!= NULL
)
637 curr
->prev
->next
= curr
->next
;
638 (*head
)->prev
= curr
;
644 static void ssl_cipher_collect_ciphers(const SSL_METHOD
*ssl_method
,
646 uint32_t disabled_mkey
,
647 uint32_t disabled_auth
,
648 uint32_t disabled_enc
,
649 uint32_t disabled_mac
,
650 CIPHER_ORDER
*co_list
,
651 CIPHER_ORDER
**head_p
,
652 CIPHER_ORDER
**tail_p
)
658 * We have num_of_ciphers descriptions compiled in, depending on the
659 * method selected (SSLv3, TLSv1 etc).
660 * These will later be sorted in a linked list with at most num
664 /* Get the initial list of ciphers */
665 co_list_num
= 0; /* actual count of ciphers */
666 for (i
= 0; i
< num_of_ciphers
; i
++) {
667 c
= ssl_method
->get_cipher(i
);
668 /* drop those that use any of that is not available */
669 if (c
== NULL
|| !c
->valid
)
671 if ((c
->algorithm_mkey
& disabled_mkey
) ||
672 (c
->algorithm_auth
& disabled_auth
) ||
673 (c
->algorithm_enc
& disabled_enc
) ||
674 (c
->algorithm_mac
& disabled_mac
))
676 if (((ssl_method
->ssl3_enc
->enc_flags
& SSL_ENC_FLAG_DTLS
) == 0) &&
679 if (((ssl_method
->ssl3_enc
->enc_flags
& SSL_ENC_FLAG_DTLS
) != 0) &&
683 co_list
[co_list_num
].cipher
= c
;
684 co_list
[co_list_num
].next
= NULL
;
685 co_list
[co_list_num
].prev
= NULL
;
686 co_list
[co_list_num
].active
= 0;
691 * Prepare linked list from list entries
693 if (co_list_num
> 0) {
694 co_list
[0].prev
= NULL
;
696 if (co_list_num
> 1) {
697 co_list
[0].next
= &co_list
[1];
699 for (i
= 1; i
< co_list_num
- 1; i
++) {
700 co_list
[i
].prev
= &co_list
[i
- 1];
701 co_list
[i
].next
= &co_list
[i
+ 1];
704 co_list
[co_list_num
- 1].prev
= &co_list
[co_list_num
- 2];
707 co_list
[co_list_num
- 1].next
= NULL
;
709 *head_p
= &co_list
[0];
710 *tail_p
= &co_list
[co_list_num
- 1];
714 static void ssl_cipher_collect_aliases(const SSL_CIPHER
**ca_list
,
715 int num_of_group_aliases
,
716 uint32_t disabled_mkey
,
717 uint32_t disabled_auth
,
718 uint32_t disabled_enc
,
719 uint32_t disabled_mac
,
722 CIPHER_ORDER
*ciph_curr
;
723 const SSL_CIPHER
**ca_curr
;
725 uint32_t mask_mkey
= ~disabled_mkey
;
726 uint32_t mask_auth
= ~disabled_auth
;
727 uint32_t mask_enc
= ~disabled_enc
;
728 uint32_t mask_mac
= ~disabled_mac
;
731 * First, add the real ciphers as already collected
735 while (ciph_curr
!= NULL
) {
736 *ca_curr
= ciph_curr
->cipher
;
738 ciph_curr
= ciph_curr
->next
;
742 * Now we add the available ones from the cipher_aliases[] table.
743 * They represent either one or more algorithms, some of which
744 * in any affected category must be supported (set in enabled_mask),
745 * or represent a cipher strength value (will be added in any case because algorithms=0).
747 for (i
= 0; i
< num_of_group_aliases
; i
++) {
748 uint32_t algorithm_mkey
= cipher_aliases
[i
].algorithm_mkey
;
749 uint32_t algorithm_auth
= cipher_aliases
[i
].algorithm_auth
;
750 uint32_t algorithm_enc
= cipher_aliases
[i
].algorithm_enc
;
751 uint32_t algorithm_mac
= cipher_aliases
[i
].algorithm_mac
;
754 if ((algorithm_mkey
& mask_mkey
) == 0)
758 if ((algorithm_auth
& mask_auth
) == 0)
762 if ((algorithm_enc
& mask_enc
) == 0)
766 if ((algorithm_mac
& mask_mac
) == 0)
769 *ca_curr
= (SSL_CIPHER
*)(cipher_aliases
+ i
);
773 *ca_curr
= NULL
; /* end of list */
776 static void ssl_cipher_apply_rule(uint32_t cipher_id
, uint32_t alg_mkey
,
777 uint32_t alg_auth
, uint32_t alg_enc
,
778 uint32_t alg_mac
, int min_tls
,
779 uint32_t algo_strength
, int rule
,
780 int32_t strength_bits
, CIPHER_ORDER
**head_p
,
781 CIPHER_ORDER
**tail_p
)
783 CIPHER_ORDER
*head
, *tail
, *curr
, *next
, *last
;
784 const SSL_CIPHER
*cp
;
787 OSSL_TRACE_BEGIN(TLS_CIPHER
) {
789 "Applying rule %d with %08x/%08x/%08x/%08x/%08x %08x (%d)\n",
790 rule
, (unsigned int)alg_mkey
, (unsigned int)alg_auth
,
791 (unsigned int)alg_enc
, (unsigned int)alg_mac
, min_tls
,
792 (unsigned int)algo_strength
, (int)strength_bits
);
795 if (rule
== CIPHER_DEL
|| rule
== CIPHER_BUMP
)
796 reverse
= 1; /* needed to maintain sorting between currently
820 next
= reverse
? curr
->prev
: curr
->next
;
825 * Selection criteria is either the value of strength_bits
826 * or the algorithms used.
828 if (strength_bits
>= 0) {
829 if (strength_bits
!= cp
->strength_bits
)
832 if (trc_out
!= NULL
) {
835 "\nAlgo = %08x/%08x/%08x/%08x/%08x Algo_strength = %08x\n",
837 (unsigned int)cp
->algorithm_mkey
,
838 (unsigned int)cp
->algorithm_auth
,
839 (unsigned int)cp
->algorithm_enc
,
840 (unsigned int)cp
->algorithm_mac
,
842 (unsigned int)cp
->algo_strength
);
844 if (cipher_id
!= 0 && (cipher_id
!= cp
->id
))
846 if (alg_mkey
&& !(alg_mkey
& cp
->algorithm_mkey
))
848 if (alg_auth
&& !(alg_auth
& cp
->algorithm_auth
))
850 if (alg_enc
&& !(alg_enc
& cp
->algorithm_enc
))
852 if (alg_mac
&& !(alg_mac
& cp
->algorithm_mac
))
854 if (min_tls
&& (min_tls
!= cp
->min_tls
))
856 if ((algo_strength
& SSL_STRONG_MASK
)
857 && !(algo_strength
& SSL_STRONG_MASK
& cp
->algo_strength
))
859 if ((algo_strength
& SSL_DEFAULT_MASK
)
860 && !(algo_strength
& SSL_DEFAULT_MASK
& cp
->algo_strength
))
865 BIO_printf(trc_out
, "Action = %d\n", rule
);
867 /* add the cipher if it has not been added yet. */
868 if (rule
== CIPHER_ADD
) {
871 ll_append_tail(&head
, curr
, &tail
);
875 /* Move the added cipher to this location */
876 else if (rule
== CIPHER_ORD
) {
879 ll_append_tail(&head
, curr
, &tail
);
881 } else if (rule
== CIPHER_DEL
) {
885 * most recently deleted ciphersuites get best positions for
886 * any future CIPHER_ADD (note that the CIPHER_DEL loop works
887 * in reverse to maintain the order)
889 ll_append_head(&head
, curr
, &tail
);
892 } else if (rule
== CIPHER_BUMP
) {
894 ll_append_head(&head
, curr
, &tail
);
895 } else if (rule
== CIPHER_KILL
) {
900 curr
->prev
->next
= curr
->next
;
904 if (curr
->next
!= NULL
)
905 curr
->next
->prev
= curr
->prev
;
906 if (curr
->prev
!= NULL
)
907 curr
->prev
->next
= curr
->next
;
916 OSSL_TRACE_END(TLS_CIPHER
);
919 static int ssl_cipher_strength_sort(CIPHER_ORDER
**head_p
,
920 CIPHER_ORDER
**tail_p
)
922 int32_t max_strength_bits
;
927 * This routine sorts the ciphers with descending strength. The sorting
928 * must keep the pre-sorted sequence, so we apply the normal sorting
929 * routine as '+' movement to the end of the list.
931 max_strength_bits
= 0;
933 while (curr
!= NULL
) {
934 if (curr
->active
&& (curr
->cipher
->strength_bits
> max_strength_bits
))
935 max_strength_bits
= curr
->cipher
->strength_bits
;
939 number_uses
= OPENSSL_zalloc(sizeof(int) * (max_strength_bits
+ 1));
940 if (number_uses
== NULL
)
944 * Now find the strength_bits values actually used
947 while (curr
!= NULL
) {
949 number_uses
[curr
->cipher
->strength_bits
]++;
953 * Go through the list of used strength_bits values in descending
956 for (i
= max_strength_bits
; i
>= 0; i
--)
957 if (number_uses
[i
] > 0)
958 ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_ORD
, i
, head_p
,
961 OPENSSL_free(number_uses
);
965 static int ssl_cipher_process_rulestr(const char *rule_str
,
966 CIPHER_ORDER
**head_p
,
967 CIPHER_ORDER
**tail_p
,
968 const SSL_CIPHER
**ca_list
, CERT
*c
)
970 uint32_t alg_mkey
, alg_auth
, alg_enc
, alg_mac
, algo_strength
;
973 int j
, multi
, found
, rule
, retval
, ok
, buflen
;
974 uint32_t cipher_id
= 0;
987 } else if (ch
== '+') {
990 } else if (ch
== '!') {
993 } else if (ch
== '@') {
994 rule
= CIPHER_SPECIAL
;
1016 #ifndef CHARSET_EBCDIC
1017 while (((ch
>= 'A') && (ch
<= 'Z')) ||
1018 ((ch
>= '0') && (ch
<= '9')) ||
1019 ((ch
>= 'a') && (ch
<= 'z')) ||
1020 (ch
== '-') || (ch
== '_') || (ch
== '.') || (ch
== '='))
1022 while (isalnum((unsigned char)ch
) || (ch
== '-') || (ch
== '_') || (ch
== '.')
1032 * We hit something we cannot deal with,
1033 * it is no command or separator nor
1034 * alphanumeric, so we call this an error.
1036 ERR_raise(ERR_LIB_SSL
, SSL_R_INVALID_COMMAND
);
1040 if (rule
== CIPHER_SPECIAL
) {
1041 found
= 0; /* unused -- avoid compiler warning */
1042 break; /* special treatment */
1045 /* check for multi-part specification */
1054 * Now search for the cipher alias in the ca_list. Be careful
1055 * with the strncmp, because the "buflen" limitation
1056 * will make the rule "ADH:SOME" and the cipher
1057 * "ADH-MY-CIPHER" look like a match for buflen=3.
1058 * So additionally check whether the cipher name found
1059 * has the correct length. We can save a strlen() call:
1060 * just checking for the '\0' at the right place is
1061 * sufficient, we have to strncmp() anyway. (We cannot
1062 * use strcmp(), because buf is not '\0' terminated.)
1066 while (ca_list
[j
]) {
1067 if (strncmp(buf
, ca_list
[j
]->name
, buflen
) == 0
1068 && (ca_list
[j
]->name
[buflen
] == '\0')) {
1071 } else if (ca_list
[j
]->stdname
!= NULL
1072 && strncmp(buf
, ca_list
[j
]->stdname
, buflen
) == 0
1073 && ca_list
[j
]->stdname
[buflen
] == '\0') {
1081 break; /* ignore this entry */
1083 if (ca_list
[j
]->algorithm_mkey
) {
1085 alg_mkey
&= ca_list
[j
]->algorithm_mkey
;
1091 alg_mkey
= ca_list
[j
]->algorithm_mkey
;
1095 if (ca_list
[j
]->algorithm_auth
) {
1097 alg_auth
&= ca_list
[j
]->algorithm_auth
;
1103 alg_auth
= ca_list
[j
]->algorithm_auth
;
1107 if (ca_list
[j
]->algorithm_enc
) {
1109 alg_enc
&= ca_list
[j
]->algorithm_enc
;
1115 alg_enc
= ca_list
[j
]->algorithm_enc
;
1119 if (ca_list
[j
]->algorithm_mac
) {
1121 alg_mac
&= ca_list
[j
]->algorithm_mac
;
1127 alg_mac
= ca_list
[j
]->algorithm_mac
;
1131 if (ca_list
[j
]->algo_strength
& SSL_STRONG_MASK
) {
1132 if (algo_strength
& SSL_STRONG_MASK
) {
1134 (ca_list
[j
]->algo_strength
& SSL_STRONG_MASK
) |
1136 if (!(algo_strength
& SSL_STRONG_MASK
)) {
1141 algo_strength
= ca_list
[j
]->algo_strength
& SSL_STRONG_MASK
;
1145 if (ca_list
[j
]->algo_strength
& SSL_DEFAULT_MASK
) {
1146 if (algo_strength
& SSL_DEFAULT_MASK
) {
1148 (ca_list
[j
]->algo_strength
& SSL_DEFAULT_MASK
) |
1150 if (!(algo_strength
& SSL_DEFAULT_MASK
)) {
1156 ca_list
[j
]->algo_strength
& SSL_DEFAULT_MASK
;
1160 if (ca_list
[j
]->valid
) {
1162 * explicit ciphersuite found; its protocol version does not
1163 * become part of the search pattern!
1166 cipher_id
= ca_list
[j
]->id
;
1169 * not an explicit ciphersuite; only in this case, the
1170 * protocol version is considered part of the search pattern
1173 if (ca_list
[j
]->min_tls
) {
1174 if (min_tls
!= 0 && min_tls
!= ca_list
[j
]->min_tls
) {
1178 min_tls
= ca_list
[j
]->min_tls
;
1188 * Ok, we have the rule, now apply it
1190 if (rule
== CIPHER_SPECIAL
) { /* special command */
1192 if ((buflen
== 8) && HAS_PREFIX(buf
, "STRENGTH")) {
1193 ok
= ssl_cipher_strength_sort(head_p
, tail_p
);
1194 } else if (buflen
== 10 && CHECK_AND_SKIP_PREFIX(buf
, "SECLEVEL=")) {
1195 int level
= *buf
- '0';
1196 if (level
< 0 || level
> 5) {
1197 ERR_raise(ERR_LIB_SSL
, SSL_R_INVALID_COMMAND
);
1199 c
->sec_level
= level
;
1203 ERR_raise(ERR_LIB_SSL
, SSL_R_INVALID_COMMAND
);
1208 * We do not support any "multi" options
1209 * together with "@", so throw away the
1210 * rest of the command, if any left, until
1211 * end or ':' is found.
1213 while ((*l
!= '\0') && !ITEM_SEP(*l
))
1216 ssl_cipher_apply_rule(cipher_id
,
1217 alg_mkey
, alg_auth
, alg_enc
, alg_mac
,
1218 min_tls
, algo_strength
, rule
, -1, head_p
,
1221 while ((*l
!= '\0') && !ITEM_SEP(*l
))
1231 static int check_suiteb_cipher_list(const SSL_METHOD
*meth
, CERT
*c
,
1232 const char **prule_str
)
1234 unsigned int suiteb_flags
= 0, suiteb_comb2
= 0;
1235 if (HAS_PREFIX(*prule_str
, "SUITEB128ONLY")) {
1236 suiteb_flags
= SSL_CERT_FLAG_SUITEB_128_LOS_ONLY
;
1237 } else if (HAS_PREFIX(*prule_str
, "SUITEB128C2")) {
1239 suiteb_flags
= SSL_CERT_FLAG_SUITEB_128_LOS
;
1240 } else if (HAS_PREFIX(*prule_str
, "SUITEB128")) {
1241 suiteb_flags
= SSL_CERT_FLAG_SUITEB_128_LOS
;
1242 } else if (HAS_PREFIX(*prule_str
, "SUITEB192")) {
1243 suiteb_flags
= SSL_CERT_FLAG_SUITEB_192_LOS
;
1247 c
->cert_flags
&= ~SSL_CERT_FLAG_SUITEB_128_LOS
;
1248 c
->cert_flags
|= suiteb_flags
;
1250 suiteb_flags
= c
->cert_flags
& SSL_CERT_FLAG_SUITEB_128_LOS
;
1255 /* Check version: if TLS 1.2 ciphers allowed we can use Suite B */
1257 if (!(meth
->ssl3_enc
->enc_flags
& SSL_ENC_FLAG_TLS1_2_CIPHERS
)) {
1258 ERR_raise(ERR_LIB_SSL
, SSL_R_AT_LEAST_TLS_1_2_NEEDED_IN_SUITEB_MODE
);
1262 switch (suiteb_flags
) {
1263 case SSL_CERT_FLAG_SUITEB_128_LOS
:
1265 *prule_str
= "ECDHE-ECDSA-AES256-GCM-SHA384";
1268 "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384";
1270 case SSL_CERT_FLAG_SUITEB_128_LOS_ONLY
:
1271 *prule_str
= "ECDHE-ECDSA-AES128-GCM-SHA256";
1273 case SSL_CERT_FLAG_SUITEB_192_LOS
:
1274 *prule_str
= "ECDHE-ECDSA-AES256-GCM-SHA384";
1280 static int ciphersuite_cb(const char *elem
, int len
, void *arg
)
1282 STACK_OF(SSL_CIPHER
) *ciphersuites
= (STACK_OF(SSL_CIPHER
) *)arg
;
1283 const SSL_CIPHER
*cipher
;
1284 /* Arbitrary sized temp buffer for the cipher name. Should be big enough */
1287 if (len
> (int)(sizeof(name
) - 1))
1288 /* Anyway return 1 so we can parse rest of the list */
1291 memcpy(name
, elem
, len
);
1294 cipher
= ssl3_get_cipher_by_std_name(name
);
1296 /* Ciphersuite not found but return 1 to parse rest of the list */
1299 if (!sk_SSL_CIPHER_push(ciphersuites
, cipher
)) {
1300 ERR_raise(ERR_LIB_SSL
, ERR_R_INTERNAL_ERROR
);
1307 static __owur
int set_ciphersuites(STACK_OF(SSL_CIPHER
) **currciphers
, const char *str
)
1309 STACK_OF(SSL_CIPHER
) *newciphers
= sk_SSL_CIPHER_new_null();
1311 if (newciphers
== NULL
)
1314 /* Parse the list. We explicitly allow an empty list */
1316 && (CONF_parse_list(str
, ':', 1, ciphersuite_cb
, newciphers
) <= 0
1317 || sk_SSL_CIPHER_num(newciphers
) == 0)) {
1318 ERR_raise(ERR_LIB_SSL
, SSL_R_NO_CIPHER_MATCH
);
1319 sk_SSL_CIPHER_free(newciphers
);
1322 sk_SSL_CIPHER_free(*currciphers
);
1323 *currciphers
= newciphers
;
1328 static int update_cipher_list_by_id(STACK_OF(SSL_CIPHER
) **cipher_list_by_id
,
1329 STACK_OF(SSL_CIPHER
) *cipherstack
)
1331 STACK_OF(SSL_CIPHER
) *tmp_cipher_list
= sk_SSL_CIPHER_dup(cipherstack
);
1333 if (tmp_cipher_list
== NULL
) {
1337 sk_SSL_CIPHER_free(*cipher_list_by_id
);
1338 *cipher_list_by_id
= tmp_cipher_list
;
1340 (void)sk_SSL_CIPHER_set_cmp_func(*cipher_list_by_id
, ssl_cipher_ptr_id_cmp
);
1341 sk_SSL_CIPHER_sort(*cipher_list_by_id
);
1346 static int update_cipher_list(SSL_CTX
*ctx
,
1347 STACK_OF(SSL_CIPHER
) **cipher_list
,
1348 STACK_OF(SSL_CIPHER
) **cipher_list_by_id
,
1349 STACK_OF(SSL_CIPHER
) *tls13_ciphersuites
)
1352 STACK_OF(SSL_CIPHER
) *tmp_cipher_list
= sk_SSL_CIPHER_dup(*cipher_list
);
1354 if (tmp_cipher_list
== NULL
)
1358 * Delete any existing TLSv1.3 ciphersuites. These are always first in the
1361 while (sk_SSL_CIPHER_num(tmp_cipher_list
) > 0
1362 && sk_SSL_CIPHER_value(tmp_cipher_list
, 0)->min_tls
1364 (void)sk_SSL_CIPHER_delete(tmp_cipher_list
, 0);
1366 /* Insert the new TLSv1.3 ciphersuites */
1367 for (i
= sk_SSL_CIPHER_num(tls13_ciphersuites
) - 1; i
>= 0; i
--) {
1368 const SSL_CIPHER
*sslc
= sk_SSL_CIPHER_value(tls13_ciphersuites
, i
);
1370 /* Don't include any TLSv1.3 ciphersuites that are disabled */
1371 if ((sslc
->algorithm_enc
& ctx
->disabled_enc_mask
) == 0
1372 && (ssl_cipher_table_mac
[sslc
->algorithm2
1373 & SSL_HANDSHAKE_MAC_MASK
].mask
1374 & ctx
->disabled_mac_mask
) == 0) {
1375 sk_SSL_CIPHER_unshift(tmp_cipher_list
, sslc
);
1379 if (!update_cipher_list_by_id(cipher_list_by_id
, tmp_cipher_list
)) {
1380 sk_SSL_CIPHER_free(tmp_cipher_list
);
1384 sk_SSL_CIPHER_free(*cipher_list
);
1385 *cipher_list
= tmp_cipher_list
;
1390 int SSL_CTX_set_ciphersuites(SSL_CTX
*ctx
, const char *str
)
1392 int ret
= set_ciphersuites(&(ctx
->tls13_ciphersuites
), str
);
1394 if (ret
&& ctx
->cipher_list
!= NULL
)
1395 return update_cipher_list(ctx
, &ctx
->cipher_list
, &ctx
->cipher_list_by_id
,
1396 ctx
->tls13_ciphersuites
);
1401 int SSL_set_ciphersuites(SSL
*s
, const char *str
)
1403 STACK_OF(SSL_CIPHER
) *cipher_list
;
1404 SSL_CONNECTION
*sc
= SSL_CONNECTION_FROM_SSL(s
);
1410 ret
= set_ciphersuites(&(sc
->tls13_ciphersuites
), str
);
1412 if (sc
->cipher_list
== NULL
) {
1413 if ((cipher_list
= SSL_get_ciphers(s
)) != NULL
)
1414 sc
->cipher_list
= sk_SSL_CIPHER_dup(cipher_list
);
1416 if (ret
&& sc
->cipher_list
!= NULL
)
1417 return update_cipher_list(s
->ctx
, &sc
->cipher_list
,
1418 &sc
->cipher_list_by_id
,
1419 sc
->tls13_ciphersuites
);
1424 STACK_OF(SSL_CIPHER
) *ssl_create_cipher_list(SSL_CTX
*ctx
,
1425 STACK_OF(SSL_CIPHER
) *tls13_ciphersuites
,
1426 STACK_OF(SSL_CIPHER
) **cipher_list
,
1427 STACK_OF(SSL_CIPHER
) **cipher_list_by_id
,
1428 const char *rule_str
,
1431 int ok
, num_of_ciphers
, num_of_alias_max
, num_of_group_aliases
, i
;
1432 uint32_t disabled_mkey
, disabled_auth
, disabled_enc
, disabled_mac
;
1433 STACK_OF(SSL_CIPHER
) *cipherstack
;
1435 CIPHER_ORDER
*co_list
= NULL
, *head
= NULL
, *tail
= NULL
, *curr
;
1436 const SSL_CIPHER
**ca_list
= NULL
;
1437 const SSL_METHOD
*ssl_method
= ctx
->method
;
1440 * Return with error if nothing to do.
1442 if (rule_str
== NULL
|| cipher_list
== NULL
|| cipher_list_by_id
== NULL
)
1445 if (!check_suiteb_cipher_list(ssl_method
, c
, &rule_str
))
1449 * To reduce the work to do we only want to process the compiled
1450 * in algorithms, so we first get the mask of disabled ciphers.
1453 disabled_mkey
= ctx
->disabled_mkey_mask
;
1454 disabled_auth
= ctx
->disabled_auth_mask
;
1455 disabled_enc
= ctx
->disabled_enc_mask
;
1456 disabled_mac
= ctx
->disabled_mac_mask
;
1459 * Now we have to collect the available ciphers from the compiled
1460 * in ciphers. We cannot get more than the number compiled in, so
1461 * it is used for allocation.
1463 num_of_ciphers
= ssl_method
->num_ciphers();
1465 if (num_of_ciphers
> 0) {
1466 co_list
= OPENSSL_malloc(sizeof(*co_list
) * num_of_ciphers
);
1467 if (co_list
== NULL
)
1468 return NULL
; /* Failure */
1471 ssl_cipher_collect_ciphers(ssl_method
, num_of_ciphers
,
1472 disabled_mkey
, disabled_auth
, disabled_enc
,
1473 disabled_mac
, co_list
, &head
, &tail
);
1475 /* Now arrange all ciphers by preference. */
1478 * Everything else being equal, prefer ephemeral ECDH over other key
1479 * exchange mechanisms.
1480 * For consistency, prefer ECDSA over RSA (though this only matters if the
1481 * server has both certificates, and is using the DEFAULT, or a client
1484 ssl_cipher_apply_rule(0, SSL_kECDHE
, SSL_aECDSA
, 0, 0, 0, 0, CIPHER_ADD
,
1486 ssl_cipher_apply_rule(0, SSL_kECDHE
, 0, 0, 0, 0, 0, CIPHER_ADD
, -1, &head
,
1488 ssl_cipher_apply_rule(0, SSL_kECDHE
, 0, 0, 0, 0, 0, CIPHER_DEL
, -1, &head
,
1491 /* Within each strength group, we prefer GCM over CHACHA... */
1492 ssl_cipher_apply_rule(0, 0, 0, SSL_AESGCM
, 0, 0, 0, CIPHER_ADD
, -1,
1494 ssl_cipher_apply_rule(0, 0, 0, SSL_CHACHA20
, 0, 0, 0, CIPHER_ADD
, -1,
1498 * ...and generally, our preferred cipher is AES.
1499 * Note that AEADs will be bumped to take preference after sorting by
1502 ssl_cipher_apply_rule(0, 0, 0, SSL_AES
^ SSL_AESGCM
, 0, 0, 0, CIPHER_ADD
,
1505 /* Temporarily enable everything else for sorting */
1506 ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_ADD
, -1, &head
, &tail
);
1508 /* Low priority for MD5 */
1509 ssl_cipher_apply_rule(0, 0, 0, 0, SSL_MD5
, 0, 0, CIPHER_ORD
, -1, &head
,
1513 * Move anonymous ciphers to the end. Usually, these will remain
1514 * disabled. (For applications that allow them, they aren't too bad, but
1515 * we prefer authenticated ciphers.)
1517 ssl_cipher_apply_rule(0, 0, SSL_aNULL
, 0, 0, 0, 0, CIPHER_ORD
, -1, &head
,
1520 ssl_cipher_apply_rule(0, SSL_kRSA
, 0, 0, 0, 0, 0, CIPHER_ORD
, -1, &head
,
1522 ssl_cipher_apply_rule(0, SSL_kPSK
, 0, 0, 0, 0, 0, CIPHER_ORD
, -1, &head
,
1525 /* RC4 is sort-of broken -- move to the end */
1526 ssl_cipher_apply_rule(0, 0, 0, SSL_RC4
, 0, 0, 0, CIPHER_ORD
, -1, &head
,
1530 * Now sort by symmetric encryption strength. The above ordering remains
1531 * in force within each class
1533 if (!ssl_cipher_strength_sort(&head
, &tail
)) {
1534 OPENSSL_free(co_list
);
1539 * Partially overrule strength sort to prefer TLS 1.2 ciphers/PRFs.
1541 ssl_cipher_apply_rule(0, 0, 0, 0, 0, TLS1_2_VERSION
, 0, CIPHER_BUMP
, -1,
1545 * Irrespective of strength, enforce the following order:
1546 * (EC)DHE + AEAD > (EC)DHE > rest of AEAD > rest.
1547 * Within each group, ciphers remain sorted by strength and previous
1552 * 4) TLS 1.2 > legacy
1554 * Because we now bump ciphers to the top of the list, we proceed in
1555 * reverse order of preference.
1557 ssl_cipher_apply_rule(0, 0, 0, 0, SSL_AEAD
, 0, 0, CIPHER_BUMP
, -1,
1559 ssl_cipher_apply_rule(0, SSL_kDHE
| SSL_kECDHE
, 0, 0, 0, 0, 0,
1560 CIPHER_BUMP
, -1, &head
, &tail
);
1561 ssl_cipher_apply_rule(0, SSL_kDHE
| SSL_kECDHE
, 0, 0, SSL_AEAD
, 0, 0,
1562 CIPHER_BUMP
, -1, &head
, &tail
);
1564 /* Now disable everything (maintaining the ordering!) */
1565 ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_DEL
, -1, &head
, &tail
);
1568 * We also need cipher aliases for selecting based on the rule_str.
1569 * There might be two types of entries in the rule_str: 1) names
1570 * of ciphers themselves 2) aliases for groups of ciphers.
1571 * For 1) we need the available ciphers and for 2) the cipher
1572 * groups of cipher_aliases added together in one list (otherwise
1573 * we would be happy with just the cipher_aliases table).
1575 num_of_group_aliases
= OSSL_NELEM(cipher_aliases
);
1576 num_of_alias_max
= num_of_ciphers
+ num_of_group_aliases
+ 1;
1577 ca_list
= OPENSSL_malloc(sizeof(*ca_list
) * num_of_alias_max
);
1578 if (ca_list
== NULL
) {
1579 OPENSSL_free(co_list
);
1580 return NULL
; /* Failure */
1582 ssl_cipher_collect_aliases(ca_list
, num_of_group_aliases
,
1583 disabled_mkey
, disabled_auth
, disabled_enc
,
1584 disabled_mac
, head
);
1587 * If the rule_string begins with DEFAULT, apply the default rule
1588 * before using the (possibly available) additional rules.
1592 if (HAS_PREFIX(rule_str
, "DEFAULT")) {
1593 ok
= ssl_cipher_process_rulestr(OSSL_default_cipher_list(),
1594 &head
, &tail
, ca_list
, c
);
1600 if (ok
&& (rule_p
[0] != '\0'))
1601 ok
= ssl_cipher_process_rulestr(rule_p
, &head
, &tail
, ca_list
, c
);
1603 OPENSSL_free(ca_list
); /* Not needed anymore */
1605 if (!ok
) { /* Rule processing failure */
1606 OPENSSL_free(co_list
);
1611 * Allocate new "cipherstack" for the result, return with error
1612 * if we cannot get one.
1614 if ((cipherstack
= sk_SSL_CIPHER_new_null()) == NULL
) {
1615 OPENSSL_free(co_list
);
1619 /* Add TLSv1.3 ciphers first - we always prefer those if possible */
1620 for (i
= 0; i
< sk_SSL_CIPHER_num(tls13_ciphersuites
); i
++) {
1621 const SSL_CIPHER
*sslc
= sk_SSL_CIPHER_value(tls13_ciphersuites
, i
);
1623 /* Don't include any TLSv1.3 ciphers that are disabled */
1624 if ((sslc
->algorithm_enc
& disabled_enc
) != 0
1625 || (ssl_cipher_table_mac
[sslc
->algorithm2
1626 & SSL_HANDSHAKE_MAC_MASK
].mask
1627 & ctx
->disabled_mac_mask
) != 0) {
1628 sk_SSL_CIPHER_delete(tls13_ciphersuites
, i
);
1633 if (!sk_SSL_CIPHER_push(cipherstack
, sslc
)) {
1634 OPENSSL_free(co_list
);
1635 sk_SSL_CIPHER_free(cipherstack
);
1640 OSSL_TRACE_BEGIN(TLS_CIPHER
) {
1641 BIO_printf(trc_out
, "cipher selection:\n");
1644 * The cipher selection for the list is done. The ciphers are added
1645 * to the resulting precedence to the STACK_OF(SSL_CIPHER).
1647 for (curr
= head
; curr
!= NULL
; curr
= curr
->next
) {
1649 if (!sk_SSL_CIPHER_push(cipherstack
, curr
->cipher
)) {
1650 OPENSSL_free(co_list
);
1651 sk_SSL_CIPHER_free(cipherstack
);
1652 OSSL_TRACE_CANCEL(TLS_CIPHER
);
1655 if (trc_out
!= NULL
)
1656 BIO_printf(trc_out
, "<%s>\n", curr
->cipher
->name
);
1659 OPENSSL_free(co_list
); /* Not needed any longer */
1660 OSSL_TRACE_END(TLS_CIPHER
);
1662 if (!update_cipher_list_by_id(cipher_list_by_id
, cipherstack
)) {
1663 sk_SSL_CIPHER_free(cipherstack
);
1666 sk_SSL_CIPHER_free(*cipher_list
);
1667 *cipher_list
= cipherstack
;
1672 char *SSL_CIPHER_description(const SSL_CIPHER
*cipher
, char *buf
, int len
)
1675 const char *kx
, *au
, *enc
, *mac
;
1676 uint32_t alg_mkey
, alg_auth
, alg_enc
, alg_mac
;
1677 static const char *const format
= "%-30s %-7s Kx=%-8s Au=%-5s Enc=%-22s Mac=%-4s\n";
1681 if ((buf
= OPENSSL_malloc(len
)) == NULL
)
1683 } else if (len
< 128) {
1687 alg_mkey
= cipher
->algorithm_mkey
;
1688 alg_auth
= cipher
->algorithm_auth
;
1689 alg_enc
= cipher
->algorithm_enc
;
1690 alg_mac
= cipher
->algorithm_mac
;
1692 ver
= ssl_protocol_to_string(cipher
->min_tls
);
1754 /* New GOST ciphersuites have both SSL_aGOST12 and SSL_aGOST01 bits */
1755 case (SSL_aGOST12
| SSL_aGOST01
):
1792 enc
= "AESGCM(128)";
1795 enc
= "AESGCM(256)";
1798 enc
= "AESCCM(128)";
1801 enc
= "AESCCM(256)";
1803 case SSL_AES128CCM8
:
1804 enc
= "AESCCM8(128)";
1806 case SSL_AES256CCM8
:
1807 enc
= "AESCCM8(256)";
1809 case SSL_CAMELLIA128
:
1810 enc
= "Camellia(128)";
1812 case SSL_CAMELLIA256
:
1813 enc
= "Camellia(256)";
1815 case SSL_ARIA128GCM
:
1816 enc
= "ARIAGCM(128)";
1818 case SSL_ARIA256GCM
:
1819 enc
= "ARIAGCM(256)";
1824 case SSL_eGOST2814789CNT
:
1825 case SSL_eGOST2814789CNT12
:
1826 enc
= "GOST89(256)";
1831 case SSL_KUZNYECHIK
:
1834 case SSL_CHACHA20POLY1305
:
1835 enc
= "CHACHA20/POLY1305(256)";
1859 case SSL_GOST89MAC12
:
1865 case SSL_GOST12_256
:
1866 case SSL_GOST12_512
:
1874 BIO_snprintf(buf
, len
, format
, cipher
->name
, ver
, kx
, au
, enc
, mac
);
1879 const char *SSL_CIPHER_get_version(const SSL_CIPHER
*c
)
1885 * Backwards-compatibility crutch. In almost all contexts we report TLS
1886 * 1.0 as "TLSv1", but for ciphers we report "TLSv1.0".
1888 if (c
->min_tls
== TLS1_VERSION
)
1890 return ssl_protocol_to_string(c
->min_tls
);
1893 /* return the actual cipher being used */
1894 const char *SSL_CIPHER_get_name(const SSL_CIPHER
*c
)
1901 /* return the actual cipher being used in RFC standard name */
1902 const char *SSL_CIPHER_standard_name(const SSL_CIPHER
*c
)
1909 /* return the OpenSSL name based on given RFC standard name */
1910 const char *OPENSSL_cipher_name(const char *stdname
)
1912 const SSL_CIPHER
*c
;
1914 if (stdname
== NULL
)
1916 c
= ssl3_get_cipher_by_std_name(stdname
);
1917 return SSL_CIPHER_get_name(c
);
1920 /* number of bits for symmetric cipher */
1921 int SSL_CIPHER_get_bits(const SSL_CIPHER
*c
, int *alg_bits
)
1926 if (alg_bits
!= NULL
)
1927 *alg_bits
= (int)c
->alg_bits
;
1928 ret
= (int)c
->strength_bits
;
1933 uint32_t SSL_CIPHER_get_id(const SSL_CIPHER
*c
)
1938 uint16_t SSL_CIPHER_get_protocol_id(const SSL_CIPHER
*c
)
1940 return c
->id
& 0xFFFF;
1943 SSL_COMP
*ssl3_comp_find(STACK_OF(SSL_COMP
) *sk
, int n
)
1949 if ((n
== 0) || (sk
== NULL
))
1952 i
= sk_SSL_COMP_find(sk
, &srch_key
);
1954 ctmp
= sk_SSL_COMP_value(sk
, i
);
1961 #ifdef OPENSSL_NO_COMP
1962 STACK_OF(SSL_COMP
) *SSL_COMP_get_compression_methods(void)
1967 STACK_OF(SSL_COMP
) *SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP
)
1973 int SSL_COMP_add_compression_method(int id
, COMP_METHOD
*cm
)
1979 STACK_OF(SSL_COMP
) *SSL_COMP_get_compression_methods(void)
1981 STACK_OF(SSL_COMP
) **rv
;
1983 rv
= (STACK_OF(SSL_COMP
) **)OSSL_LIB_CTX_get_data(NULL
,
1984 OSSL_LIB_CTX_COMP_METHODS
);
1991 STACK_OF(SSL_COMP
) *SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP
)
1994 STACK_OF(SSL_COMP
) **comp_methods
;
1995 STACK_OF(SSL_COMP
) *old_meths
;
1997 comp_methods
= (STACK_OF(SSL_COMP
) **)OSSL_LIB_CTX_get_data(NULL
,
1998 OSSL_LIB_CTX_COMP_METHODS
);
1999 if (comp_methods
== NULL
) {
2002 old_meths
= *comp_methods
;
2003 *comp_methods
= meths
;
2009 int SSL_COMP_add_compression_method(int id
, COMP_METHOD
*cm
)
2011 STACK_OF(SSL_COMP
) *comp_methods
;
2014 comp_methods
= SSL_COMP_get_compression_methods();
2016 if (comp_methods
== NULL
)
2019 if (cm
== NULL
|| COMP_get_type(cm
) == NID_undef
)
2023 * According to draft-ietf-tls-compression-04.txt, the
2024 * compression number ranges should be the following:
2026 * 0 to 63: methods defined by the IETF
2027 * 64 to 192: external party methods assigned by IANA
2028 * 193 to 255: reserved for private use
2030 if (id
< 193 || id
> 255) {
2031 ERR_raise(ERR_LIB_SSL
, SSL_R_COMPRESSION_ID_NOT_WITHIN_PRIVATE_RANGE
);
2035 comp
= OPENSSL_malloc(sizeof(*comp
));
2040 if (sk_SSL_COMP_find(comp_methods
, comp
) >= 0) {
2042 ERR_raise(ERR_LIB_SSL
, SSL_R_DUPLICATE_COMPRESSION_ID
);
2045 if (!sk_SSL_COMP_push(comp_methods
, comp
)) {
2047 ERR_raise(ERR_LIB_SSL
, ERR_R_CRYPTO_LIB
);
2055 const char *SSL_COMP_get_name(const COMP_METHOD
*comp
)
2057 #ifndef OPENSSL_NO_COMP
2058 return comp
? COMP_get_name(comp
) : NULL
;
2064 const char *SSL_COMP_get0_name(const SSL_COMP
*comp
)
2066 #ifndef OPENSSL_NO_COMP
2073 int SSL_COMP_get_id(const SSL_COMP
*comp
)
2075 #ifndef OPENSSL_NO_COMP
2082 const SSL_CIPHER
*ssl_get_cipher_by_char(SSL_CONNECTION
*s
,
2083 const unsigned char *ptr
,
2086 const SSL_CIPHER
*c
= SSL_CONNECTION_GET_SSL(s
)->method
->get_cipher_by_char(ptr
);
2088 if (c
== NULL
|| (!all
&& c
->valid
== 0))
2093 const SSL_CIPHER
*SSL_CIPHER_find(SSL
*ssl
, const unsigned char *ptr
)
2095 return ssl
->method
->get_cipher_by_char(ptr
);
2098 int SSL_CIPHER_get_cipher_nid(const SSL_CIPHER
*c
)
2103 i
= ssl_cipher_info_lookup(ssl_cipher_table_cipher
, c
->algorithm_enc
);
2106 return ssl_cipher_table_cipher
[i
].nid
;
2109 int SSL_CIPHER_get_digest_nid(const SSL_CIPHER
*c
)
2111 int i
= ssl_cipher_info_lookup(ssl_cipher_table_mac
, c
->algorithm_mac
);
2115 return ssl_cipher_table_mac
[i
].nid
;
2118 int SSL_CIPHER_get_kx_nid(const SSL_CIPHER
*c
)
2120 int i
= ssl_cipher_info_lookup(ssl_cipher_table_kx
, c
->algorithm_mkey
);
2124 return ssl_cipher_table_kx
[i
].nid
;
2127 int SSL_CIPHER_get_auth_nid(const SSL_CIPHER
*c
)
2129 int i
= ssl_cipher_info_lookup(ssl_cipher_table_auth
, c
->algorithm_auth
);
2133 return ssl_cipher_table_auth
[i
].nid
;
2136 int ssl_get_md_idx(int md_nid
) {
2139 for(i
= 0; i
< SSL_MD_NUM_IDX
; i
++) {
2140 if (md_nid
== ssl_cipher_table_mac
[i
].nid
)
2146 const EVP_MD
*SSL_CIPHER_get_handshake_digest(const SSL_CIPHER
*c
)
2148 int idx
= c
->algorithm2
& SSL_HANDSHAKE_MAC_MASK
;
2150 if (idx
< 0 || idx
>= SSL_MD_NUM_IDX
)
2152 return EVP_get_digestbynid(ssl_cipher_table_mac
[idx
].nid
);
2155 int SSL_CIPHER_is_aead(const SSL_CIPHER
*c
)
2157 return (c
->algorithm_mac
& SSL_AEAD
) ? 1 : 0;
2160 int ssl_cipher_get_overhead(const SSL_CIPHER
*c
, size_t *mac_overhead
,
2161 size_t *int_overhead
, size_t *blocksize
,
2162 size_t *ext_overhead
)
2164 int mac
= 0, in
= 0, blk
= 0, out
= 0;
2166 /* Some hard-coded numbers for the CCM/Poly1305 MAC overhead
2167 * because there are no handy #defines for those. */
2168 if (c
->algorithm_enc
& (SSL_AESGCM
| SSL_ARIAGCM
)) {
2169 out
= EVP_GCM_TLS_EXPLICIT_IV_LEN
+ EVP_GCM_TLS_TAG_LEN
;
2170 } else if (c
->algorithm_enc
& (SSL_AES128CCM
| SSL_AES256CCM
)) {
2171 out
= EVP_CCM_TLS_EXPLICIT_IV_LEN
+ 16;
2172 } else if (c
->algorithm_enc
& (SSL_AES128CCM8
| SSL_AES256CCM8
)) {
2173 out
= EVP_CCM_TLS_EXPLICIT_IV_LEN
+ 8;
2174 } else if (c
->algorithm_enc
& SSL_CHACHA20POLY1305
) {
2176 } else if (c
->algorithm_mac
& SSL_AEAD
) {
2177 /* We're supposed to have handled all the AEAD modes above */
2180 /* Non-AEAD modes. Calculate MAC/cipher overhead separately */
2181 int digest_nid
= SSL_CIPHER_get_digest_nid(c
);
2182 const EVP_MD
*e_md
= EVP_get_digestbynid(digest_nid
);
2187 mac
= EVP_MD_get_size(e_md
);
2190 if (c
->algorithm_enc
!= SSL_eNULL
) {
2191 int cipher_nid
= SSL_CIPHER_get_cipher_nid(c
);
2192 const EVP_CIPHER
*e_ciph
= EVP_get_cipherbynid(cipher_nid
);
2194 /* If it wasn't AEAD or SSL_eNULL, we expect it to be a
2195 known CBC cipher. */
2196 if (e_ciph
== NULL
||
2197 EVP_CIPHER_get_mode(e_ciph
) != EVP_CIPH_CBC_MODE
)
2200 in
= 1; /* padding length byte */
2201 out
= EVP_CIPHER_get_iv_length(e_ciph
);
2204 blk
= EVP_CIPHER_get_block_size(e_ciph
);
2210 *mac_overhead
= (size_t)mac
;
2211 *int_overhead
= (size_t)in
;
2212 *blocksize
= (size_t)blk
;
2213 *ext_overhead
= (size_t)out
;
2218 int ssl_cert_is_disabled(SSL_CTX
*ctx
, size_t idx
)
2220 const SSL_CERT_LOOKUP
*cl
;
2222 /* A provider-loaded key type is always enabled */
2223 if (idx
>= SSL_PKEY_NUM
)
2226 cl
= ssl_cert_lookup_by_idx(idx
, ctx
);
2227 if (cl
== NULL
|| (cl
->amask
& ctx
->disabled_auth_mask
) != 0)
2233 * Default list of TLSv1.2 (and earlier) ciphers
2234 * SSL_DEFAULT_CIPHER_LIST deprecated in 3.0.0
2235 * Update both macro and function simultaneously
2237 const char *OSSL_default_cipher_list(void)
2239 return "ALL:!COMPLEMENTOFDEFAULT:!eNULL";
2243 * Default list of TLSv1.3 (and later) ciphers
2244 * TLS_DEFAULT_CIPHERSUITES deprecated in 3.0.0
2245 * Update both macro and function simultaneously
2247 const char *OSSL_default_ciphersuites(void)
2249 return "TLS_AES_256_GCM_SHA384:"
2250 "TLS_CHACHA20_POLY1305_SHA256:"
2251 "TLS_AES_128_GCM_SHA256";