mirror of https://github.com/ARMmbed/mbed-os.git
Move Mbed TLS self tests to a separate configuration
We potentially save flash space by not enabling Mbed TLS self-tests by default. A new test config file, TESTS/configs/mbedtls.json, is provided to enable self tests. This newly created JSON file also enables timing in Mbed TLS so timing gets tested.pull/14772/head
parent
d6f825ebf0
commit
49163f0f33
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"macros": [
|
||||
"MBEDTLS_SELF_TEST",
|
||||
"MBEDTLS_TIMING_C",
|
||||
"MBEDTLS_TIMING_ALT"
|
||||
]
|
||||
}
|
|
@ -48,7 +48,7 @@
|
|||
#define MBEDTLS_PK_RSA_ALT_SUPPORT
|
||||
#define MBEDTLS_PKCS1_V15
|
||||
#define MBEDTLS_PKCS1_V21
|
||||
#define MBEDTLS_SELF_TEST
|
||||
//#define MBEDTLS_SELF_TEST
|
||||
#define MBEDTLS_VERSION_FEATURES
|
||||
#define MBEDTLS_X509_CHECK_KEY_USAGE
|
||||
#define MBEDTLS_X509_CHECK_EXTENDED_KEY_USAGE
|
||||
|
|
|
@ -1396,7 +1396,7 @@
|
|||
*
|
||||
* Enable the checkup functions (*_self_test).
|
||||
*/
|
||||
#define MBEDTLS_SELF_TEST
|
||||
//#define MBEDTLS_SELF_TEST
|
||||
|
||||
/**
|
||||
* \def MBEDTLS_SHA256_SMALLER
|
||||
|
|
|
@ -31,6 +31,10 @@ using namespace utest::v1;
|
|||
#include MBEDTLS_CONFIG_FILE
|
||||
#endif
|
||||
|
||||
#if !defined(MBEDTLS_SELF_TEST)
|
||||
#error [NOT_SUPPORTED] MBEDTLS_SELF_TEST undefined
|
||||
#endif
|
||||
|
||||
#include "mbedtls/sha256.h"
|
||||
#include "mbedtls/sha512.h"
|
||||
#include "mbedtls/entropy.h"
|
||||
|
|
|
@ -117,6 +117,9 @@ conf unset MBEDTLS_SSL_TRUNCATED_HMAC
|
|||
|
||||
conf unset MBEDTLS_PLATFORM_TIME_TYPE_MACRO
|
||||
|
||||
# potentially save flash space by not enabling self-tests by default
|
||||
conf unset MBEDTLS_SELF_TEST
|
||||
|
||||
# The default size of MBEDTLS_MPI_MAX_SIZE is 1024 bytes.
|
||||
# In some cases, this value is set to stack buffers.
|
||||
# Reduce the maximal MBEDTLS_MPI_MAX_SIZE to 512 bytes,
|
||||
|
|
|
@ -37,3 +37,6 @@ add_code() {
|
|||
|
||||
conf set MBEDTLS_CMAC_C
|
||||
conf unset MBEDTLS_CIPHER_MODE_XTS
|
||||
|
||||
# potentially save flash space by not enabling self-tests by default
|
||||
conf unset MBEDTLS_SELF_TEST
|
||||
|
|
Loading…
Reference in New Issue