You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2021/11/05 04:22:32 UTC

[incubator-nuttx-apps] branch master updated: boot/mcuboot: Add support for using Mbed TLS as crypto backend

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new 19b9c23  boot/mcuboot: Add support for using Mbed TLS as crypto backend
19b9c23 is described below

commit 19b9c2371cad955cea89eed9762f4500e1cedaf8
Author: Gustavo Henrique Nihei <gu...@espressif.com>
AuthorDate: Thu Nov 4 15:54:47 2021 -0300

    boot/mcuboot: Add support for using Mbed TLS as crypto backend
    
    Signed-off-by: Gustavo Henrique Nihei <gu...@espressif.com>
---
 boot/mcuboot/Kconfig | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/boot/mcuboot/Kconfig b/boot/mcuboot/Kconfig
index 1904bdd..4cc8e39 100644
--- a/boot/mcuboot/Kconfig
+++ b/boot/mcuboot/Kconfig
@@ -26,6 +26,10 @@ choice
 	prompt "Cryptographic backend"
 	default MCUBOOT_USE_TINYCRYPT
 
+config MCUBOOT_USE_MBED_TLS
+	bool "Mbed TLS"
+	depends on CRYPTO_MBEDTLS
+
 config MCUBOOT_USE_TINYCRYPT
 	bool "TinyCrypt"