From 06505cc5be21602f667490e476a9bae7989ef411 Mon Sep 17 00:00:00 2001 From: "harshal.patil" Date: Sat, 23 May 2026 00:31:38 +0530 Subject: [PATCH] feat(drivers): Introduce MD5 operation context --- tf-psa-crypto/include/psa/crypto_driver_contexts_primitives.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tf-psa-crypto/include/psa/crypto_driver_contexts_primitives.h b/tf-psa-crypto/include/psa/crypto_driver_contexts_primitives.h index 9a441eea5..3e2209790 100644 --- a/tf-psa-crypto/include/psa/crypto_driver_contexts_primitives.h +++ b/tf-psa-crypto/include/psa/crypto_driver_contexts_primitives.h @@ -44,7 +44,7 @@ #endif #if defined(ESP_MD5_DRIVER_ENABLED) -#include "esp_rom_md5.h" +#include "psa_crypto_driver_esp_md5_contexts.h" #endif #if defined(ESP_AES_DRIVER_ENABLED) @@ -128,7 +128,7 @@ typedef union { esp_sha_hash_operation_t esp_ctx; #endif #if defined(ESP_MD5_DRIVER_ENABLED) - md5_context_t md5_ctx; + esp_md5_hash_operation_t md5_ctx; #endif } psa_driver_hash_context_t;