Searched refs:stream_in (Results 1 – 2 of 2) sorted by relevance
/hal_espressif-latest/components/mbedtls/port/aes/ |
D | esp_aes_gcm.c | 594 … const unsigned char *input, unsigned char *output, uint8_t *stream_in) in esp_aes_gcm_input_support_hw_accel() argument 609 } else if (!esp_ptr_dma_capable(stream_in)) { in esp_aes_gcm_input_support_hw_accel() 683 uint8_t stream_in[AES_BLOCK_BYTES] = {}; in esp_aes_gcm_crypt_and_tag() local 688 if (!esp_aes_gcm_input_support_hw_accel(length, aad, aad_len, input, output, stream_in)) { in esp_aes_gcm_crypt_and_tag() 738 memcpy(stream_in, aad + block_bytes, stream_bytes); in esp_aes_gcm_crypt_and_tag() 744 aad_desc[1].buf = stream_in; in esp_aes_gcm_crypt_and_tag()
|
/hal_espressif-latest/components/mbedtls/port/aes/dma/ |
D | esp_aes.c | 503 uint8_t stream_in[16] = {}; in esp_aes_process_dma_gcm() local 554 memcpy(stream_in, input + block_bytes, stream_bytes); in esp_aes_process_dma_gcm() 556 lldesc_setup_link(&stream_in_desc, stream_in, AES_BLOCK_BYTES, 0); in esp_aes_process_dma_gcm()
|