-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Function mbedtls_md5_starts() was renamed, needs to be renamed in WebAuthentication.cpp #3
Comments
Brilliant thanks Serpinio. Been searching for a solution that worked for hours! |
Thank you very much to solve the problem with your instructions! |
Now it compile like a charm Thank's |
in my case the issue was 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'? arduino 2.3.2 |
Just wanted to share an FYI and a fix:
SDK md5.h file had a small change in ESP framework: the mbedtls_md5_starts() was renamed which invalidated auth calls with the current version of AsyncWebserver fork with an "undefined reference to mbedtls_md5_starts" error.
How to fix:
Change these three lines in WebAuthentication.cpp:
To:
Original discussion: me-no-dev/ESPAsyncWebServer#1147
The text was updated successfully, but these errors were encountered: