Skip to content

Commit 39c02e8

Browse files
authored
Merge pull request #392 from erikbernsen/master
More performant implementation of AES128_ECB_encrypt on Apple platforms.
2 parents dbbee9d + a09deff commit 39c02e8

File tree

7 files changed

+756
-586
lines changed

7 files changed

+756
-586
lines changed

Diff for: lib/CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ endif()
55
if(ESP_PLATFORM)
66
set(COMPONENT_SRCS
77
aes.c
8+
aes_reference.c
89
aes128ccm.c
910
alloc.c
1011
asn1-ber.c
@@ -69,6 +70,7 @@ elseif(IOP AND BUILD_IRX)
6970
ps2/smb2man.c
7071
ps2/imports.c
7172
aes.c
73+
aes_reference.c
7274
aes128ccm.c
7375
alloc.c
7476
asn1-ber.c
@@ -126,6 +128,8 @@ BUILD_IOP_IMPORTS(${CMAKE_CURRENT_SOURCE_DIR}/ps2/imports.c ${CMAKE_CURRENT_SOUR
126128

127129
else()
128130
set(SOURCES aes.c
131+
aes_reference.c
132+
aes_apple.c
129133
aes128ccm.c
130134
alloc.c
131135
asn1-ber.c

0 commit comments

Comments
 (0)