Searched refs:esp_gcm_context (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-latest/components/mbedtls/port/include/aes/ |
D | esp_aes_gcm.h | 47 } esp_gcm_context; typedef 55 void esp_aes_gcm_init( esp_gcm_context *ctx); 72 int esp_aes_gcm_setkey( esp_gcm_context *ctx, 90 int esp_aes_gcm_starts( esp_gcm_context *ctx, 115 int esp_aes_gcm_update_ad( esp_gcm_context *ctx, 170 int esp_aes_gcm_update( esp_gcm_context *ctx, 208 int esp_aes_gcm_finish( esp_gcm_context *ctx, 218 void esp_aes_gcm_free( esp_gcm_context *ctx); 244 int esp_aes_gcm_crypt_and_tag( esp_gcm_context *ctx, 280 int esp_aes_gcm_auth_decrypt( esp_gcm_context *ctx,
|
/hal_espressif-latest/components/mbedtls/port/aes/ |
D | esp_aes_gcm.c | 50 static void esp_gcm_ghash(esp_gcm_context *ctx, const unsigned char *x, size_t x_len, uint8_t *z); 56 static void esp_gcm_derive_J0(esp_gcm_context *ctx) in esp_gcm_derive_J0() 88 static void increment32_j0(esp_gcm_context *ctx, uint8_t *j) in increment32_j0() 143 static int gcm_gen_table( esp_gcm_context *ctx ) in gcm_gen_table() 206 static void gcm_mult( esp_gcm_context *ctx, const unsigned char x[16], in gcm_mult() 254 int esp_aes_gcm_setkey( esp_gcm_context *ctx, in esp_aes_gcm_setkey() 300 static void esp_gcm_ghash(esp_gcm_context *ctx, const unsigned char *x, size_t x_len, uint8_t *z) in esp_gcm_ghash() 340 void esp_aes_gcm_init( esp_gcm_context *ctx) in esp_aes_gcm_init() 346 bzero(ctx, sizeof(esp_gcm_context)); in esp_aes_gcm_init() 356 void esp_aes_gcm_free( esp_gcm_context *ctx) in esp_aes_gcm_free() [all …]
|
/hal_espressif-latest/components/mbedtls/port/include/ |
D | gcm_alt.h | 25 typedef esp_gcm_context mbedtls_gcm_context;
|