Skip to content

Commit

Permalink
samples: add descryptions for encryption types in mcuboot_config.temp…
Browse files Browse the repository at this point in the history
…late.h

Signed-off-by: Raphael Dupont <raphael7dup@gmail.com>
  • Loading branch information
RaphaelDupont committed May 30, 2023
1 parent 09632c9 commit 1431ed7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 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,32 @@
/* #define MCUBOOT_SIGN_EC256 */


/*
* Encryption types
*
* You must choose one encryption type and provide a private key.
*
* 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 1431ed7

Please sign in to comment.