File tree 3 files changed +5
-0
lines changed
3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ uint32_t bootutil_get_caps(void);
45
45
#define BOOTUTIL_CAP_ENC_EC256 (1<<10)
46
46
#define BOOTUTIL_CAP_SWAP_USING_MOVE (1<<11)
47
47
#define BOOTUTIL_CAP_DOWNGRADE_PREVENTION (1<<12)
48
+ #define BOOTUTIL_CAP_ENC_X25519 (1<<13)
48
49
49
50
/*
50
51
* Query the number of images this bootloader is configured for. This
Original file line number Diff line number Diff line change @@ -54,6 +54,9 @@ uint32_t bootutil_get_caps(void)
54
54
#if defined(MCUBOOT_ENCRYPT_EC256 )
55
55
res |= BOOTUTIL_CAP_ENC_EC256 ;
56
56
#endif
57
+ #if defined(MCUBOOT_ENCRYPT_X25519 )
58
+ res |= BOOTUTIL_CAP_ENC_X25519 ;
59
+ #endif
57
60
#if defined(MCUBOOT_VALIDATE_PRIMARY_SLOT )
58
61
res |= BOOTUTIL_CAP_VALIDATE_PRIMARY_SLOT ;
59
62
#endif
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ pub enum Caps {
23
23
EncEc256 = ( 1 << 10 ) ,
24
24
SwapUsingMove = ( 1 << 11 ) ,
25
25
DowngradePrevention = ( 1 << 12 ) ,
26
+ EncX25519 = ( 1 << 13 ) ,
26
27
}
27
28
28
29
impl Caps {
You can’t perform that action at this time.
0 commit comments