Searched refs:stream_block (Results 1 – 1 of 1) sorted by relevance
/mcuboot-latest/boot/bootutil/include/bootutil/crypto/ |
D | aes_ctr.h | 66 uint8_t stream_block[BOOTUTIL_CRYPTO_AES_CTR_BLOCK_SIZE]; in bootutil_aes_ctr_encrypt() local 67 return mbedtls_aes_crypt_ctr(ctx, mlen, &blk_off, counter, stream_block, m, c); in bootutil_aes_ctr_encrypt() 72 uint8_t stream_block[BOOTUTIL_CRYPTO_AES_CTR_BLOCK_SIZE]; in bootutil_aes_ctr_decrypt() local 73 return mbedtls_aes_crypt_ctr(ctx, clen, &blk_off, counter, stream_block, c, m); in bootutil_aes_ctr_decrypt()
|