Skip to content

Commit 7309b55

Browse files
57300tejlmand
authored andcommitted
nrf_security: cracen: silexpk: Update struct sx_pk_config_ik
The pointers can be const. Signed-off-by: Grzegorz Swiderski <[email protected]>
1 parent 5204e99 commit 7309b55

File tree

1 file changed

+2
-2
lines changed
  • subsys/nrf_security/src/drivers/cracen/silexpk/include/silexpk

1 file changed

+2
-2
lines changed

subsys/nrf_security/src/drivers/cracen/silexpk/include/silexpk/ik.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ struct sx_pk_inops_ik_ptmult {
102102

103103
struct sx_pk_config_ik {
104104
/** Key Bundle name */
105-
uint32_t *key_bundle;
105+
const uint32_t *key_bundle;
106106

107107
/** Key Bundle size in 32 bit words
108108
*
@@ -112,7 +112,7 @@ struct sx_pk_config_ik {
112112
int key_bundle_sz;
113113

114114
/** Device Secret */
115-
uint32_t *device_secret;
115+
const uint32_t *device_secret;
116116

117117
/** Device Secret size in 32 bit words
118118
*

0 commit comments

Comments
 (0)