Home
last modified time | relevance | path

Searched refs:hmacBuffer (Results 1 – 4 of 4) sorted by relevance

/hal_infineon-latest/mtb-pdl-cat1/drivers/source/
Dcy_crypto_core_hmac_v2.c73 …hmac_state_t *hmacState, cy_en_crypto_sha_mode_t mode, cy_stc_crypto_v2_hmac_buffers_t *hmacBuffer) in Cy_Crypto_Core_V2_Hmac_Init() argument
78 if ((NULL == base) || (NULL == hmacState) || (NULL == hmacBuffer)) in Cy_Crypto_Core_V2_Hmac_Init()
83 hmacState->ipad = hmacBuffer->ipad; in Cy_Crypto_Core_V2_Hmac_Init()
84 hmacState->opad = hmacBuffer->opad; in Cy_Crypto_Core_V2_Hmac_Init()
85 hmacState->m0Key = hmacBuffer->m0Key; in Cy_Crypto_Core_V2_Hmac_Init()
86 hmacState->sha_buffer = &hmacBuffer->shaBuffers; in Cy_Crypto_Core_V2_Hmac_Init()
457 CY_ALIGN(__SCB_DCACHE_LINE_SIZE) static cy_stc_crypto_v2_hmac_buffers_t hmacBuffer; in Cy_Crypto_Core_V2_Hmac()
460 cy_stc_crypto_v2_hmac_buffers_t hmacBuffer = {0}; in Cy_Crypto_Core_V2_Hmac() local
471 …Cy_Crypto_Core_V2_MemSet(base, (void*)&hmacBuffer, 0x00U, (uint16_t)sizeof(cy_stc_crypto_v2_hmac_b… in Cy_Crypto_Core_V2_Hmac()
473 status = Cy_Crypto_Core_V2_Hmac_Init(base, &hmacState, mode, &hmacBuffer); in Cy_Crypto_Core_V2_Hmac()
Dcy_crypto_core_hkdf_v2.c210 CY_ALIGN(__SCB_DCACHE_LINE_SIZE) static cy_stc_crypto_v2_hmac_buffers_t hmacBuffer; in Cy_Crypto_Core_V2_Hkdf_Expand()
215 cy_stc_crypto_v2_hmac_buffers_t hmacBuffer = {0u}; in Cy_Crypto_Core_V2_Hkdf_Expand() local
227 …Cy_Crypto_Core_V2_MemSet(base, (void*)&hmacBuffer, 0x00U, (uint16_t)sizeof(cy_stc_crypto_v2_hmac_b… in Cy_Crypto_Core_V2_Hkdf_Expand()
246 status = Cy_Crypto_Core_V2_Hmac_Init(base, &hmacState, mode, &hmacBuffer); in Cy_Crypto_Core_V2_Hkdf_Expand()
/hal_infineon-latest/mtb-pdl-cat1/drivers/include/
Dcy_crypto_core_hmac.h146 …_Type *base, cy_stc_crypto_hmac_state_t *hmacState, cy_en_crypto_sha_mode_t mode, void *hmacBuffer) in Cy_Crypto_Core_Hmac_Init() argument
159 … Cy_Crypto_Core_V2_Hmac_Init(base, hmacState, mode, (cy_stc_crypto_v2_hmac_buffers_t *)hmacBuffer); in Cy_Crypto_Core_Hmac_Init()
166 (void)hmacBuffer; /* Suppress a compiler warning about unused variables */ in Cy_Crypto_Core_Hmac_Init()
Dcy_crypto_core_hmac_v2.h73 … cy_en_crypto_sha_mode_t mode, cy_stc_crypto_v2_hmac_buffers_t *hmacBuffer);