mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 10:47:19 +02:00
fix(mbedtls/aes): fix AES interrupt allocation for AES-GCM operations
This commit is contained in:
@ -14,22 +14,22 @@
|
|||||||
* http://csrc.nist.gov/encryption/aes/rijndael/Rijndael.pdf
|
* http://csrc.nist.gov/encryption/aes/rijndael/Rijndael.pdf
|
||||||
* http://csrc.nist.gov/publications/fips/fips197/fips-197.pdf
|
* http://csrc.nist.gov/publications/fips/fips197/fips-197.pdf
|
||||||
*/
|
*/
|
||||||
#include "soc/soc_caps.h"
|
#include <string.h>
|
||||||
|
|
||||||
|
|
||||||
#include "aes/esp_aes.h"
|
#include "aes/esp_aes.h"
|
||||||
#include "aes/esp_aes_gcm.h"
|
#include "aes/esp_aes_gcm.h"
|
||||||
#include "aes/esp_aes_internal.h"
|
#include "aes/esp_aes_internal.h"
|
||||||
#include "hal/aes_hal.h"
|
#include "hal/aes_hal.h"
|
||||||
|
|
||||||
#include "esp_log.h"
|
|
||||||
#include "mbedtls/aes.h"
|
#include "mbedtls/aes.h"
|
||||||
|
#include "mbedtls/error.h"
|
||||||
#include "mbedtls/gcm.h"
|
#include "mbedtls/gcm.h"
|
||||||
|
|
||||||
#include "esp_heap_caps.h"
|
#include "esp_heap_caps.h"
|
||||||
|
#include "esp_log.h"
|
||||||
|
#include "soc/soc_caps.h"
|
||||||
#include "soc/soc_memory_layout.h"
|
#include "soc/soc_memory_layout.h"
|
||||||
|
|
||||||
#include "mbedtls/error.h"
|
|
||||||
#include <string.h>
|
|
||||||
#include "sdkconfig.h"
|
#include "sdkconfig.h"
|
||||||
|
|
||||||
#if SOC_AES_SUPPORT_DMA
|
#if SOC_AES_SUPPORT_DMA
|
||||||
|
Reference in New Issue
Block a user