blob: 2ffc5f41fc2657aecf85fb9b7c14a3568921d592 [file] [log] [blame]
Gilles Peskine863b96a2021-12-16 10:04:58 +01001/**
2 * \file ssl_debug_helpers.h
3 *
4 * \brief Automatically generated helper functions for debugging
5 */
6/*
7 * Copyright The Mbed TLS Contributors
8 * SPDX-License-Identifier: Apache-2.0
9 *
10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
11 * not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 * See the License for the specific language governing permissions and
20 * limitations under the License.
21 */
22
Gilles Peskine09f1ee62021-12-15 12:53:34 +010023#ifndef MBEDTLS_SSL_DEBUG_HELPERS_H
24#define MBEDTLS_SSL_DEBUG_HELPERS_H
25
26#include "common.h"
27
28#if defined(MBEDTLS_DEBUG_C)
29
30#include "mbedtls/ssl.h"
31#include "ssl_misc.h"
32
33
34const char *mbedtls_ssl_states_str( mbedtls_ssl_states in );
35
Gilles Peskine66971f82022-01-13 13:46:05 +010036const char *mbedtls_ssl_protocol_version_str( mbedtls_ssl_protocol_version in );
37
Gilles Peskine09f1ee62021-12-15 12:53:34 +010038const char *mbedtls_tls_prf_types_str( mbedtls_tls_prf_types in );
39
40const char *mbedtls_ssl_key_export_type_str( mbedtls_ssl_key_export_type in );
41
42
43
44#endif /* MBEDTLS_DEBUG_C */
45
46#endif /* SSL_DEBUG_HELPERS_H */