You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 20, 2025. It is now read-only.
I use lastest library version on Arduino IDE 2.2.1, with ESP32 wroom32, when I compile I get many errors.
First lines starting with :
d:\Mega\� Arduino\libraries\ESPAsyncWebServer\src\WebAuthentication.cpp: In function 'bool getMD5(uint8_t*, uint16_t, char*)':
d:\Mega\� Arduino\libraries\ESPAsyncWebServer\src\WebAuthentication.cpp:74:3: error: 'mbedtls_md5_starts_ret' was not declared in this scope; did you mean 'mbedtls_md5_starts'?
74 | mbedtls_md5_starts_ret(&_ctx);
.....
Best regards,
Laurent
The text was updated successfully, but these errors were encountered:
Using recent PlatformIO with ESP32 core v2.
Got an error in WebAuthentication.cpp: mbedtls_md5_starts(&_ctx); does not exist.
Replaced with mbedtls_md5_starts_ret(&_ctx); and it compiles fine.
Hi,
I use lastest library version on Arduino IDE 2.2.1, with ESP32 wroom32, when I compile I get many errors.
First lines starting with :
d:\Mega\� Arduino\libraries\ESPAsyncWebServer\src\WebAuthentication.cpp: In function 'bool getMD5(uint8_t*, uint16_t, char*)':
d:\Mega\� Arduino\libraries\ESPAsyncWebServer\src\WebAuthentication.cpp:74:3: error: 'mbedtls_md5_starts_ret' was not declared in this scope; did you mean 'mbedtls_md5_starts'?
74 | mbedtls_md5_starts_ret(&_ctx);
.....
Best regards,
Laurent
The text was updated successfully, but these errors were encountered: