Commit 0d9de634 authored by Gowri Ramshankar's avatar Gowri Ramshankar Committed by Jamie
Browse files

bootutil: src: image_validate.c: remove mbedtls headers



removing direct inclusion of mbedtls headers.
bootutil has already abstracted away mbedtls apis.

Signed-off-by: default avatarGowri Ramshankar <Gowri.Ramshankar@analog.com>
parent 557f84be
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
@@ -32,6 +32,8 @@
#include <string.h>
#include <errno.h>

#include <limits.h>

#include <flash_map_backend/flash_map_backend.h>

#include "bootutil/image.h"
@@ -48,13 +50,6 @@ BOOT_LOG_MODULE_DECLARE(mcuboot);
#ifdef MCUBOOT_ENC_IMAGES
#include "bootutil/enc_key.h"
#endif
#if defined(MCUBOOT_SIGN_RSA)
#include "mbedtls/rsa.h"
#endif
#if defined(MCUBOOT_SIGN_EC256)
#include "mbedtls/ecdsa.h"
#endif

#include "bootutil_priv.h"

/*