fix(rom): Allow hmac_md5 override for ESP32-C3 and ESP32-S3 ROM functions

- Allow override of hmac_md5 and hmac_md5_vector rom functions
  for esp32s3 and esp32c3

This fixes crash when using hmac_md5 in wpa_supplicant component
This commit is contained in:
Shreyas Sheth
2025-12-12 17:30:04 +05:30
committed by Ashish Sharma
parent 88346ccec5
commit 1879e4702f
2 changed files with 4 additions and 0 deletions

View File

@@ -410,6 +410,8 @@ md5_vector = 0x40000610;
MD5Init = 0x40000614;
MD5Update = 0x40000618;
MD5Final = 0x4000061c;
PROVIDE (hmac_md5_vector = 0x40000620);
PROVIDE (hmac_md5 = 0x40000624);
crc32_le = 0x40000628;
crc32_be = 0x4000062c;
crc16_le = 0x40000630;

View File

@@ -518,6 +518,8 @@ md5_vector = 0x40001c50;
MD5Init = 0x40001c5c;
MD5Update = 0x40001c68;
MD5Final = 0x40001c74;
PROVIDE (hmac_md5_vector = 0x40001c80);
PROVIDE (hmac_md5 = 0x40001c8c);
crc32_le = 0x40001c98;
crc32_be = 0x40001ca4;
crc16_le = 0x40001cb0;