Skip to content

Commit

Permalink
nrf_security: drivers: cracen: fix build errors with ns
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
degjorva authored and rlubos committed Jan 8, 2025
1 parent 347a15d commit 6e0cb3a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ static psa_status_t cracen_signature_ecc_verify(int message, const psa_key_attri
if (alg == PSA_ALG_ED25519PH && message) {
psa_status_t status;
uint8_t hash[64];
uint32_t output_len;
size_t output_len;

status = psa_hash_compute(PSA_ALG_SHA_512,
input, input_length, hash,
Expand Down

0 comments on commit 6e0cb3a

Please sign in to comment.