-
Notifications
You must be signed in to change notification settings - Fork 127
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
hwcrypto/sha.h deprecated in latest esp idf framework (v4.3) #136
Comments
+1 Did anybody do the update? @fhessel |
I made the change in the HTTPConnection.hpp file and the warning went away for me. I had other issues but that particular change got rid of the warning |
Hi, I have proposed a small pr. Regards. |
Open
lvlerber
added a commit
to lvlerber/esp32_https_server
that referenced
this issue
Apr 14, 2023
hwcrypto/sha.h deprecated in latest esp idf framework (v4.3) fhessel#136
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using the latest esp idf framework (v4.3) esp32_https_server wont compile since the compiler cannot find hwcrypto/sha.h
I suggest replacing
#include <hwcrypto/sha.h>
with
#include <sha/sha_parallel_engine.h>
The text was updated successfully, but these errors were encountered: