caps: Add cap for x25519 based image encryption

Signed-off-by: Fabio Utzig <utzig@apache.org>
This commit is contained in:
Fabio Utzig 2020-04-02 10:28:39 -03:00 committed by Fabio Utzig
parent 8fcdb6d066
commit feb6c4cd40
3 changed files with 5 additions and 0 deletions

View File

@ -45,6 +45,7 @@ uint32_t bootutil_get_caps(void);
#define BOOTUTIL_CAP_ENC_EC256 (1<<10)
#define BOOTUTIL_CAP_SWAP_USING_MOVE (1<<11)
#define BOOTUTIL_CAP_DOWNGRADE_PREVENTION (1<<12)
#define BOOTUTIL_CAP_ENC_X25519 (1<<13)
/*
* Query the number of images this bootloader is configured for. This

View File

@ -54,6 +54,9 @@ uint32_t bootutil_get_caps(void)
#if defined(MCUBOOT_ENCRYPT_EC256)
res |= BOOTUTIL_CAP_ENC_EC256;
#endif
#if defined(MCUBOOT_ENCRYPT_X25519)
res |= BOOTUTIL_CAP_ENC_X25519;
#endif
#if defined(MCUBOOT_VALIDATE_PRIMARY_SLOT)
res |= BOOTUTIL_CAP_VALIDATE_PRIMARY_SLOT;
#endif

View File

@ -23,6 +23,7 @@ pub enum Caps {
EncEc256 = (1 << 10),
SwapUsingMove = (1 << 11),
DowngradePrevention = (1 << 12),
EncX25519 = (1 << 13),
}
impl Caps {