Home
last modified time | relevance | path

Searched refs:stm32_saes_update (Results 1 – 3 of 3) sorted by relevance

/optee_os/core/drivers/crypto/stm32/
H A Dstm32_saes.h51 TEE_Result stm32_saes_update(struct stm32_saes_context *ctx, bool last_block,
H A Dstm32_saes.c986 TEE_Result stm32_saes_update(struct stm32_saes_context *ctx, bool last_block, in stm32_saes_update() function
1152 res = stm32_saes_update(ctx, true, l, l, sizeof(l)); in stm32_saes_cmac_prf_128()
1192 res = stm32_saes_update(ctx, true, data, data_out, processed); in stm32_saes_cmac_prf_128()
1226 return stm32_saes_update(ctx, true, block, out, AES_BLOCK_SIZE); in stm32_saes_cmac_prf_128()
H A Dcipher.c161 return stm32_saes_update(&ip_ctx->saes.ctx, last_block, src, dst, len); in saes_update()