Fixup: Correct include paths for TinyCrypt header files

TinyCrypt header files are expected in 'tinycrypt' folder
relative to the include path.
This commit is contained in:
Hanno Becker 2019-08-20 13:33:49 +01:00
parent ad353f289b
commit 496b83ff1b
3 changed files with 4 additions and 4 deletions

View File

@ -46,7 +46,7 @@
#endif
#if defined(MBEDTLS_USE_TINYCRYPT)
#include "ecc.h"
#include "tinycrypt/ecc.h"
#endif
#if ( defined(__ARMCC_VERSION) || defined(_MSC_VER) ) && \

View File

@ -34,8 +34,8 @@
#include <string.h>
#if defined(MBEDTLS_USE_TINYCRYPT)
#include "mbedtls/ecc.h"
#include "mbedtls/ecc_dsa.h"
#include "tinycrypt/ecc.h"
#include "tinycrypt/ecc_dsa.h"
#include "mbedtls/asn1.h"
#include "mbedtls/asn1write.h"
#else

View File

@ -53,7 +53,7 @@
#include "mbedtls/pkcs12.h"
#endif
#if defined(MBEDTLS_USE_TINYCRYPT)
#include "mbedtls/ecc.h"
#include "tinycrypt/ecc.h"
#endif
#if defined(MBEDTLS_PLATFORM_C)