Mbed TLS v3.6.4
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
23 extern "C" {
24 #endif
25 
32 unsigned int mbedtls_version_get_number(void);
33 
40 void mbedtls_version_get_string(char *string);
41 
51 void mbedtls_version_get_string_full(char *string);
52 
70 int 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 */
void mbedtls_version_get_string_full(char *string)
void mbedtls_version_get_string(char *string)
Build-time configuration info.
unsigned int mbedtls_version_get_number(void)
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...