mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-26 05:55:31 +00:00
change type of hash block to uint8_t
This commit is contained in:
parent
1e2b046026
commit
9e2ffe83ac
|
@ -88,7 +88,7 @@ typedef struct {
|
||||||
/** The hash context. */
|
/** The hash context. */
|
||||||
struct psa_hash_operation_s hash_ctx;
|
struct psa_hash_operation_s hash_ctx;
|
||||||
/** The HMAC part of the context. */
|
/** 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;
|
} psa_hmac_internal_data;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue