Jens Wiklander | 32b3180 | 2023-10-06 16:59:46 +0200 | [diff] [blame] | 1 | /** |
| 2 | * TLS 1.2 and 1.3 client-side functions |
| 3 | * |
| 4 | * Copyright The Mbed TLS Contributors |
Tom Van Eyck | c163317 | 2024-04-09 18:44:13 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later |
Jens Wiklander | 32b3180 | 2023-10-06 16:59:46 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef MBEDTLS_SSL_CLIENT_H |
| 9 | #define MBEDTLS_SSL_CLIENT_H |
| 10 | |
| 11 | #include "common.h" |
| 12 | |
| 13 | #if defined(MBEDTLS_SSL_TLS_C) |
| 14 | #include "ssl_misc.h" |
| 15 | #endif |
| 16 | |
| 17 | #include <stddef.h> |
| 18 | |
| 19 | MBEDTLS_CHECK_RETURN_CRITICAL |
| 20 | int mbedtls_ssl_write_client_hello(mbedtls_ssl_context *ssl); |
| 21 | |
| 22 | #endif /* MBEDTLS_SSL_CLIENT_H */ |