Skip to content
This repository was archived by the owner on Jan 29, 2023. It is now read-only.

Commit d2d0b98

Browse files
authored
Fix <hwcrypto/sha.h> compile error
Use <sha/sha_parallel_engine.h> from ESP32 latest core v2.0.0+ ``` #include <sha/sha_parallel_engine.h> ```
1 parent de1876c commit d2d0b98

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/HTTPConnection.hpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@
66

77
#include <string>
88
#include <mbedtls/base64.h>
9-
#include <hwcrypto/sha.h>
9+
10+
//KH mod
11+
//#include <hwcrypto/sha.h>
12+
#include <sha/sha_parallel_engine.h>
13+
//////
14+
1015
#include <functional>
1116

1217
// Required for sockets

0 commit comments

Comments
 (0)