commit | 9e2ffe83acda69dc0a15da9a823ae461b6be16ca | [log] [tgz] |
---|---|---|
author | Nir Sonnenschein <nir.sonnenschein@arm.com> | Fri Jun 08 22:51:15 2018 +0300 |
committer | itayzafrir <itay.zafrir@arm.com> | Wed Sep 12 16:13:49 2018 +0300 |
tree | 2e575dc881b6581da022bf293d00f951ad65d05e | |
parent | 1e2b04602641a0b8b2794f61a5fe08b81ba75ef5 [diff] |
change type of hash block to uint8_t
diff --git a/include/psa/crypto_struct.h b/include/psa/crypto_struct.h index ebf80cb..60c44fb 100644 --- a/include/psa/crypto_struct.h +++ b/include/psa/crypto_struct.h
@@ -88,7 +88,7 @@ /** The hash context. */ struct psa_hash_operation_s hash_ctx; /** The HMAC part of the context. */ - char hmac_ctx[PSA_CRYPTO_MD_BLOCK_SIZE]; + uint8_t hmac_ctx[PSA_CRYPTO_MD_BLOCK_SIZE]; } psa_hmac_internal_data;