00001
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef MBEDTLS_VERSION_H
00029 #define MBEDTLS_VERSION_H
00030
00031 #if !defined(MBEDTLS_CONFIG_FILE)
00032 #include "config.h"
00033 #else
00034 #include MBEDTLS_CONFIG_FILE
00035 #endif
00036
00041 #define MBEDTLS_VERSION_MAJOR 2
00042 #define MBEDTLS_VERSION_MINOR 7
00043 #define MBEDTLS_VERSION_PATCH 15
00044
00050 #define MBEDTLS_VERSION_NUMBER 0x02070F00
00051 #define MBEDTLS_VERSION_STRING "2.7.15"
00052 #define MBEDTLS_VERSION_STRING_FULL "mbed TLS 2.7.15"
00053
00054 #if defined(MBEDTLS_VERSION_C)
00055
00056 #ifdef __cplusplus
00057 extern "C" {
00058 #endif
00059
00066 unsigned int mbedtls_version_get_number( void );
00067
00074 void mbedtls_version_get_string( char *string );
00075
00085 void mbedtls_version_get_string_full( char *string );
00086
00104 int mbedtls_version_check_feature( const char *feature );
00105
00106 #ifdef __cplusplus
00107 }
00108 #endif
00109
00110 #endif
00111
00112 #endif