This repository was archived by the owner on Oct 28, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ ESPCOMP = $(ESPIDF)/components
38
38
ESPTOOL ?= $(ESPCOMP ) /esptool_py/esptool/esptool.py
39
39
40
40
# verify the ESP IDF version
41
- ESPIDF_SUPHASH := f13b5966d82ccb7c907d7ea1fa7eaf22335c104b
41
+ ESPIDF_SUPHASH := 525ee784af5f1131969a40c56434a92b93e34be2
42
42
ESPIDF_CURHASH := $(shell git -C $(ESPIDF ) show -s --pretty=format:'% H')
43
43
ifneq ($(ESPIDF_CURHASH ) ,$(ESPIDF_SUPHASH ) )
44
44
$(info ** WARNING **)
@@ -298,6 +298,7 @@ ESPIDF_ESP32_O = $(addprefix $(ESPCOMP)/esp32/,\
298
298
intr_alloc.o \
299
299
dport_access.o \
300
300
brownout.o \
301
+ fast_crypto_ops.o \
301
302
)
302
303
303
304
ESPIDF_HEAP_O = $(addprefix $(ESPCOMP ) /heap/,\
@@ -632,6 +633,10 @@ ESPIDF_WPA_SUPPLICANT_O = $(addprefix $(ESPCOMP)/wpa_supplicant/,\
632
633
src/crypto/bignum.o \
633
634
src/crypto/crypto_internal-modexp.o \
634
635
src/crypto/crypto_internal-cipher.o \
636
+ src/fast_crypto/fast_sha256.o \
637
+ src/fast_crypto/fast_sha256-internal.o \
638
+ src/fast_crypto/fast_aes-wrap.o \
639
+ src/fast_crypto/fast_aes-unwrap.o \
635
640
port/os_xtensa.o \
636
641
)
637
642
You can’t perform that action at this time.
0 commit comments