Skip to content

Commit

Permalink
samples: Add a section on encryption in mcuboot_config.template.h
Browse files Browse the repository at this point in the history
Signed-off-by: Raphael Dupont <raphael7dup@gmail.com>
  • Loading branch information
RaphaelDupont committed Jun 23, 2023
1 parent cd8d218 commit f411b95
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
6 changes: 6 additions & 0 deletions boot/bootutil/src/encrypted_priv.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* SPDX-License-Identifier: Apache-2.0
*
* Copyright (c) 2018-2019 JUUL Labs
* Copyright (c) 2019-2021 Arm Limited
*/

#ifndef H_ENCRYPTED_PRIV_
#define H_ENCRYPTED_PRIV_
Expand Down
27 changes: 27 additions & 0 deletions samples/mcuboot_config/mcuboot_config.template.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,33 @@
/* #define MCUBOOT_SIGN_EC256 */


/*
* Encryption types
*
* You must choose one key encryption type and provide a private key
* when image encryption is enable (MCUBOOT_ENC_IMAGES).
*
* For examples, see :
*
* boot/espressif/keys.c
* boot/zephyr/keys.c
*/

/* Uncomment to enable image encryption. */
/* #define MCUBOOT_ENC_IMAGES */

/* Uncomment for RSA encryption support. */
/* #define MCUBOOT_ENCRYPT_RSA */

/* Uncomment for ECIES-P256 encryption support. */
/* #define MCUBOOT_ENCRYPT_EC256 */

/* Uncomment for ECIES-X25519 encryption support. */
/* #define MCUBOOT_ENCRYPT_X25519 */

/* Uncomment for AES-128 Keywrap encryption support. */
/* #define MCUBOOT_ENCRYPT_KW */

/*
* Upgrade mode
*
Expand Down

0 comments on commit f411b95

Please sign in to comment.