2025-04-09 14:36:29 +02:00
|
|
|
/* test_tls_ext.h
|
2025-02-21 12:31:30 +01:00
|
|
|
*
|
2026-02-18 09:52:21 -07:00
|
|
|
* Copyright (C) 2006-2026 wolfSSL Inc.
|
2025-02-21 12:31:30 +01:00
|
|
|
*
|
|
|
|
|
* This file is part of wolfSSL.
|
|
|
|
|
*
|
|
|
|
|
* wolfSSL is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2025-07-10 16:01:52 -06:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2025-02-21 12:31:30 +01:00
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* wolfSSL is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
|
|
|
*/
|
|
|
|
|
|
2025-05-20 13:23:14 +02:00
|
|
|
#ifndef TESTS_API_TEST_TLS_EXT_H
|
|
|
|
|
#define TESTS_API_TEST_TLS_EXT_H
|
2025-02-21 12:31:30 +01:00
|
|
|
|
2025-02-21 13:44:05 +01:00
|
|
|
int test_tls_ems_downgrade(void);
|
2026-04-15 14:48:54 +02:00
|
|
|
int test_tls_ems_resumption_downgrade(void);
|
2026-04-15 14:52:02 +02:00
|
|
|
int test_tls12_chacha20_poly1305_bad_tag(void);
|
2026-04-15 14:53:38 +02:00
|
|
|
int test_tls13_null_cipher_bad_hmac(void);
|
2026-04-15 14:58:21 +02:00
|
|
|
int test_scr_verify_data_mismatch(void);
|
2026-04-15 15:06:43 +02:00
|
|
|
int test_tls13_hrr_cipher_suite_mismatch(void);
|
2026-04-15 15:08:44 +02:00
|
|
|
int test_tls13_ticket_age_out_of_window(void);
|
2025-02-21 12:31:30 +01:00
|
|
|
int test_wolfSSL_DisableExtendedMasterSecret(void);
|
2025-09-17 15:32:31 +02:00
|
|
|
int test_certificate_authorities_certificate_request(void);
|
|
|
|
|
int test_certificate_authorities_client_hello(void);
|
2026-02-17 10:35:54 +00:00
|
|
|
int test_TLSX_TCA_Find(void);
|
2026-02-24 08:35:51 -06:00
|
|
|
int test_TLSX_SNI_GetSize_overflow(void);
|
2026-04-24 18:02:50 +00:00
|
|
|
int test_TLSX_ECH_msg_type_validation(void);
|
|
|
|
|
int test_TLSX_SRTP_msg_type_validation(void);
|
2025-02-21 12:31:30 +01:00
|
|
|
|
|
|
|
|
#endif /* TESTS_API_TEST_TLS_EMS_H */
|