mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-08-06 07:00:05 +08:00
feat(mbedtls): modify code to support ESP8266
It is that maybe less modification working on the components is better, so I just modified the platform code of AES, SHA and so on. ESP8266 has no real hardware AES, SHA or bignum peripheral, but some method can speed up the process of part of upper algorithm, so I also added the platform code of AES, SHA, bignum, ARC, MD5. ESP8266 has no platform of bignum, so users should not enable the bignum hardware at "menuconfig".
This commit is contained in:
@ -6,7 +6,7 @@ set(COMPONENT_PRIV_INCLUDEDIRS "private_include")
|
||||
endif()
|
||||
|
||||
set(COMPONENT_ADD_INCLUDEDIRS "include")
|
||||
set(COMPONENT_REQUIRES "lwip" "ssl" "tcpip_adapter")
|
||||
set(COMPONENT_REQUIRES "lwip" "mbedtls" "tcpip_adapter")
|
||||
|
||||
if(CONFIG_ENABLE_MDNS_CONSOLE)
|
||||
set(COMPONENT_SRCS "${COMPONENT_SRCS}"
|
||||
|
Reference in New Issue
Block a user