1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Rename HMAC operation structure

Prefix with 'mbedtls_psa' as per the other types which implement some
sort of algorithm in software.

Signed-off-by: Steven Cooreman <steven.cooreman@silabs.com>
This commit is contained in:
Steven Cooreman
2021-04-29 17:49:11 +02:00
parent a2a1b803da
commit 4f7cae6cbe
5 changed files with 19 additions and 17 deletions

View File

@ -52,7 +52,7 @@ typedef struct
struct psa_hash_operation_s hash_ctx;
/** The HMAC part of the context. */
uint8_t opad[PSA_HMAC_MAX_HASH_BLOCK_SIZE];
} psa_hmac_internal_data_t;
} mbedtls_psa_hmac_operation_t;
#define MBEDTLS_PSA_HMAC_OPERATION_INIT {0, PSA_HASH_OPERATION_INIT, {0}}
#endif /* PSA_WANT_ALG_HMAC */
@ -69,7 +69,7 @@ typedef struct
{
unsigned dummy; /* Make the union non-empty even with no supported algorithms. */
#if defined(PSA_WANT_ALG_HMAC)
psa_hmac_internal_data_t hmac;
mbedtls_psa_hmac_operation_t hmac;
#endif
#if defined(MBEDTLS_CMAC_C)
mbedtls_cipher_context_t cmac;

View File

@ -173,7 +173,7 @@ typedef struct
{
uint8_t *info;
size_t info_length;
psa_hmac_internal_data_t hmac;
mbedtls_psa_hmac_operation_t hmac;
uint8_t prk[PSA_HASH_MAX_SIZE];
uint8_t output_block[PSA_HASH_MAX_SIZE];
#if PSA_HASH_MAX_SIZE > 0xff
@ -215,7 +215,7 @@ typedef struct psa_tls12_prf_key_derivation_s
size_t seed_length;
uint8_t *label;
size_t label_length;
psa_hmac_internal_data_t hmac;
mbedtls_psa_hmac_operation_t hmac;
uint8_t Ai[PSA_HASH_MAX_SIZE];
/* `HMAC_hash( prk, A(i) + seed )` in the notation of RFC 5246, Sect. 5. */