Finish removing HMAC from MD-light

Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
Manuel Pégourié-Gonnard 2023-03-09 17:21:40 +01:00
parent c9e0ad23c1
commit 39a376a417
2 changed files with 12 additions and 0 deletions

View file

@ -205,8 +205,10 @@ typedef struct mbedtls_md_context_t {
/** The digest-specific context (legacy) or the PSA operation. */
void *MBEDTLS_PRIVATE(md_ctx);
#if defined(MBEDTLS_MD_C)
/** The HMAC part of the context. */
void *MBEDTLS_PRIVATE(hmac_ctx);
#endif
} mbedtls_md_context_t;
/**