Update IDF to 90747cc8b (#3118)

This commit is contained in:
Me No Dev
2019-08-20 21:11:00 +03:00
committed by GitHub
parent f4acac4c2b
commit d5e2bb12ca
91 changed files with 252 additions and 115 deletions

View File

@ -41,17 +41,13 @@ extern "C" {
/**
* \brief AES context structure
*
* \note buf is able to hold 32 extra bytes, which can be used:
* - for alignment purposes if VIA padlock is used, and/or
* - to simplify key expansion in the 256-bit case by
* generating an extra round key
*/
typedef struct {
uint8_t key_bytes;
volatile uint8_t key_in_hardware; /* This variable is used for fault injection checks, so marked volatile to avoid optimisation */
uint8_t key[32];
} esp_aes_context;
/**
* \brief The AES XTS context-type definition.
*/