From ca3b9ca7d3d9bb7bb2c0f5efa51f7e65cc1571ac Mon Sep 17 00:00:00 2001 From: "harshal.patil" Date: Wed, 25 Mar 2026 18:54:04 +0530 Subject: [PATCH] fix(mbedtls/rsa_ds): Preserve compatibility by reverting the modified esp_ds_data_ctx_t size --- .../psa_driver/include/psa_crypto_driver_esp_rsa_ds_contexts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/mbedtls/port/psa_driver/include/psa_crypto_driver_esp_rsa_ds_contexts.h b/components/mbedtls/port/psa_driver/include/psa_crypto_driver_esp_rsa_ds_contexts.h index f471f92594..713b96fcf6 100644 --- a/components/mbedtls/port/psa_driver/include/psa_crypto_driver_esp_rsa_ds_contexts.h +++ b/components/mbedtls/port/psa_driver/include/psa_crypto_driver_esp_rsa_ds_contexts.h @@ -41,7 +41,7 @@ typedef enum { */ typedef struct { esp_ds_data_t *esp_ds_data; /**< Pointer to the esp ds data */ - hmac_key_id_t efuse_key_id; /**< efuse block id in which the HMAC key for the DS peripheral is stored e.g. 0,1*/ + uint8_t efuse_key_id; /**< efuse block id in which the HMAC key for the DS peripheral is stored e.g. 0,1*/ uint16_t rsa_length_bits; /**< length of RSA private key in bits e.g. 2048 */ } esp_ds_data_ctx_t;