Skip to content

Commit feb6c4c

Browse files
committed
caps: Add cap for x25519 based image encryption
Signed-off-by: Fabio Utzig <utzig@apache.org>
1 parent 8fcdb6d commit feb6c4c

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

boot/bootutil/include/bootutil/caps.h

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ uint32_t bootutil_get_caps(void);
4545
#define BOOTUTIL_CAP_ENC_EC256 (1<<10)
4646
#define BOOTUTIL_CAP_SWAP_USING_MOVE (1<<11)
4747
#define BOOTUTIL_CAP_DOWNGRADE_PREVENTION (1<<12)
48+
#define BOOTUTIL_CAP_ENC_X25519 (1<<13)
4849

4950
/*
5051
* Query the number of images this bootloader is configured for. This

boot/bootutil/src/caps.c

+3
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ uint32_t bootutil_get_caps(void)
5454
#if defined(MCUBOOT_ENCRYPT_EC256)
5555
res |= BOOTUTIL_CAP_ENC_EC256;
5656
#endif
57+
#if defined(MCUBOOT_ENCRYPT_X25519)
58+
res |= BOOTUTIL_CAP_ENC_X25519;
59+
#endif
5760
#if defined(MCUBOOT_VALIDATE_PRIMARY_SLOT)
5861
res |= BOOTUTIL_CAP_VALIDATE_PRIMARY_SLOT;
5962
#endif

sim/src/caps.rs

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ pub enum Caps {
2323
EncEc256 = (1 << 10),
2424
SwapUsingMove = (1 << 11),
2525
DowngradePrevention = (1 << 12),
26+
EncX25519 = (1 << 13),
2627
}
2728

2829
impl Caps {

0 commit comments

Comments
 (0)