commit | 650343cdcd3e93b00b1f4ad58045728ce7ab8bfe | [log] [tgz] |
---|---|---|
author | Teppo Järvelin <teppo.jarvelin@arm.com> | Thu Oct 03 15:36:59 2019 +0300 |
committer | Teppo Järvelin <teppo.jarvelin@arm.com> | Fri Oct 04 07:35:55 2019 +0300 |
tree | 86e93db83c198835f520163481ae539468894ce5 | |
parent | 61f412eb587dcb842c9388b93505bc078a58aac4 [diff] [blame] |
Changed mbedtls_platform_memcmp to memcmp for places that don't have critical data and are under baremetal Changed back because we don't wan't to slow down the performance more than we must.
diff --git a/library/asn1write.c b/library/asn1write.c index 6e5badb..0ec1647 100644 --- a/library/asn1write.c +++ b/library/asn1write.c
@@ -33,6 +33,7 @@ #if defined(MBEDTLS_PLATFORM_C) #include "mbedtls/platform.h" +#include "mbedtls/platform_util.h" #else #include <stdlib.h> #define mbedtls_calloc calloc