2010-06-18 22:47:29 +00:00
|
|
|
/*
|
|
|
|
* Version information
|
|
|
|
*
|
2020-08-07 11:07:28 +00:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2023-11-02 19:47:20 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2010-06-18 22:47:29 +00:00
|
|
|
*/
|
|
|
|
|
2020-06-02 23:43:33 +00:00
|
|
|
#include "common.h"
|
2010-06-18 22:47:29 +00:00
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#if defined(MBEDTLS_VERSION_C)
|
2010-06-18 22:47:29 +00:00
|
|
|
|
2015-03-09 17:05:11 +00:00
|
|
|
#include "mbedtls/version.h"
|
2010-06-18 22:47:29 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
unsigned int mbedtls_version_get_number(void)
|
2010-06-18 22:47:29 +00:00
|
|
|
{
|
2023-01-11 13:50:10 +00:00
|
|
|
return MBEDTLS_VERSION_NUMBER;
|
2010-06-18 22:47:29 +00:00
|
|
|
}
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
void mbedtls_version_get_string(char *string)
|
2010-06-18 22:47:29 +00:00
|
|
|
{
|
2023-01-11 13:50:10 +00:00
|
|
|
memcpy(string, MBEDTLS_VERSION_STRING,
|
|
|
|
sizeof(MBEDTLS_VERSION_STRING));
|
2010-06-18 22:47:29 +00:00
|
|
|
}
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
void mbedtls_version_get_string_full(char *string)
|
2010-06-18 22:47:29 +00:00
|
|
|
{
|
2023-01-11 13:50:10 +00:00
|
|
|
memcpy(string, MBEDTLS_VERSION_STRING_FULL,
|
|
|
|
sizeof(MBEDTLS_VERSION_STRING_FULL));
|
2010-06-18 22:47:29 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#endif /* MBEDTLS_VERSION_C */
|