change type of hash block to uint8_t

This commit is contained in:
Nir Sonnenschein 2018-06-08 22:51:15 +03:00 committed by itayzafrir
parent 1e2b046026
commit 9e2ffe83ac

View file

@ -88,7 +88,7 @@ typedef struct {
/** 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;