blob: 05ee7e4cc31118165b74f33a6fd7d60b152de5a1 [file] [log] [blame]
Jens Wiklander32b31802023-10-06 16:59:46 +02001/**
2 * TLS 1.2 and 1.3 client-side functions
3 *
4 * Copyright The Mbed TLS Contributors
Tom Van Eyckc1633172024-04-09 18:44:13 +02005 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Jens Wiklander32b31802023-10-06 16:59:46 +02006 */
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
19MBEDTLS_CHECK_RETURN_CRITICAL
20int mbedtls_ssl_write_client_hello(mbedtls_ssl_context *ssl);
21
22#endif /* MBEDTLS_SSL_CLIENT_H */