From e34a55931ccd968e66e43e19e6e6891eb6be9458 Mon Sep 17 00:00:00 2001 From: Lindsay Stewart Date: Thu, 10 Oct 2024 11:28:27 -0700 Subject: [PATCH] feature: bump cert authorities max size to 20kb (#4832) --- tls/extensions/s2n_cert_authorities.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tls/extensions/s2n_cert_authorities.h b/tls/extensions/s2n_cert_authorities.h index 20b7b3047db..adb11a31403 100644 --- a/tls/extensions/s2n_cert_authorities.h +++ b/tls/extensions/s2n_cert_authorities.h @@ -28,7 +28,7 @@ * To keep the limit predictable and avoid surprise errors during negotiation, * set a reasonable fixed limit. */ -#define S2N_CERT_AUTHORITIES_MAX_SIZE (10000) +#define S2N_CERT_AUTHORITIES_MAX_SIZE (20000) extern const s2n_extension_type s2n_cert_authorities_extension;