mirror of
https://github.com/espressif/esp-idf.git
synced 2026-08-18 06:35:35 +03:00
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:
committed by
Ashish Sharma
parent
88346ccec5
commit
1879e4702f
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user