Mbed TLS v3.6.1
Loading...
Searching...
No Matches
version.h
Go to the documentation of this file.
1
6/*
7 * Copyright The Mbed TLS Contributors
8 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
9 */
10/*
11 * This set of run-time variables can be used to determine the version number of
12 * the Mbed TLS library used. Compile-time version defines for the same can be
13 * found in build_info.h
14 */
15#ifndef MBEDTLS_VERSION_H
16#define MBEDTLS_VERSION_H
17
18#include "mbedtls/build_info.h"
19
20#if defined(MBEDTLS_VERSION_C)
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
32unsigned int mbedtls_version_get_number(void);
33
40void mbedtls_version_get_string(char *string);
41
52
70int mbedtls_version_check_feature(const char *feature);
71
72#ifdef __cplusplus
73}
74#endif
75
76#endif /* MBEDTLS_VERSION_C */
77
78#endif /* version.h */
Build-time configuration info.
unsigned int mbedtls_version_get_number(void)
void mbedtls_version_get_string_full(char *string)
void mbedtls_version_get_string(char *string)
int mbedtls_version_check_feature(const char *feature)
Check if support for a feature was compiled into this Mbed TLS binary. This allows you to see at runt...