diff --git a/.wolfssl_known_macro_extras b/.wolfssl_known_macro_extras index 0dc46fcab..3fe7c1926 100644 --- a/.wolfssl_known_macro_extras +++ b/.wolfssl_known_macro_extras @@ -764,6 +764,7 @@ WOLFSSL_RENESAS_RSIP WOLFSSL_RENESAS_RZN2L WOLFSSL_RENESAS_TLS WOLFSSL_RENESAS_TSIP_IAREWRX +WOLFSSL_REQUIRE_TCA WOLFSSL_RSA_CHECK_D_ON_DECRYPT WOLFSSL_RSA_DECRYPT_TO_0_LEN WOLFSSL_RW_THREADED diff --git a/src/tls.c b/src/tls.c index f86023d9d..6ad21c924 100644 --- a/src/tls.c +++ b/src/tls.c @@ -2971,8 +2971,9 @@ static int TLSX_TCA_VerifyParse(WOLFSSL* ssl, byte isRequest) (void)ssl; if (!isRequest) { - /* RFC 6066 section 6 states that the server responding to trusted_ca_keys - is optional. Do not error out unless opted into with the define WOLFSSL_REQUIRE_TCA. */ + /* RFC 6066 section 6 states that the server responding + * to trusted_ca_keys is optional. Do not error out unless + * opted into with the define WOLFSSL_REQUIRE_TCA. */ #if !defined(NO_WOLFSSL_CLIENT) && defined(WOLFSSL_REQUIRE_TCA) TLSX* extension = TLSX_Find(ssl->extensions, TLSX_TRUSTED_CA_KEYS);