Home
last modified time | relevance | path

Searched refs:unprocessed_block (Results 1 – 2 of 2) sorted by relevance

/net-tools-latest/mbedtls-2.4.0/library/
Dcmac.c263 memcpy( &cmac_ctx->unprocessed_block[cmac_ctx->unprocessed_len], in mbedtls_cipher_cmac_update()
267 cmac_xor_block( state, cmac_ctx->unprocessed_block, state, block_size ); in mbedtls_cipher_cmac_update()
299 memcpy( &cmac_ctx->unprocessed_block[cmac_ctx->unprocessed_len], in mbedtls_cipher_cmac_update()
332 last_block = cmac_ctx->unprocessed_block; in mbedtls_cipher_cmac_finish()
363 mbedtls_zeroize( cmac_ctx->unprocessed_block, in mbedtls_cipher_cmac_finish()
364 sizeof( cmac_ctx->unprocessed_block ) ); in mbedtls_cipher_cmac_finish()
381 mbedtls_zeroize( cmac_ctx->unprocessed_block, in mbedtls_cipher_cmac_reset()
382 sizeof( cmac_ctx->unprocessed_block ) ); in mbedtls_cipher_cmac_reset()
/net-tools-latest/mbedtls-2.4.0/include/mbedtls/
Dcmac.h52 unsigned char unprocessed_block[MBEDTLS_CIPHER_BLKSIZE_MAX]; member