Skip to content

Commit 6e0cb3a

Browse files
degjorvarlubos
authored andcommitted
nrf_security: drivers: cracen: fix build errors with ns
Test streamer gave warnings when building with ns Updated variable to size_t to comply with mbedcrypto Signed-off-by: Dag Erik Gjørvad <[email protected]>
1 parent 347a15d commit 6e0cb3a

File tree

1 file changed

+1
-1
lines changed
  • subsys/nrf_security/src/drivers/cracen/cracenpsa/src

1 file changed

+1
-1
lines changed

subsys/nrf_security/src/drivers/cracen/cracenpsa/src/sign.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ static psa_status_t cracen_signature_ecc_verify(int message, const psa_key_attri
425425
if (alg == PSA_ALG_ED25519PH && message) {
426426
psa_status_t status;
427427
uint8_t hash[64];
428-
uint32_t output_len;
428+
size_t output_len;
429429

430430
status = psa_hash_compute(PSA_ALG_SHA_512,
431431
input, input_length, hash,

0 commit comments

Comments
 (0)