Skip to content

Commit 76c1e11

Browse files
committed
refactoring encryption interface so codec interface is separate from crypto implementation
1 parent 7531bed commit 76c1e11

File tree

6 files changed

+644
-493
lines changed

6 files changed

+644
-493
lines changed

Makefile.in

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,11 +134,13 @@ LTLINK_EXTRAS += $(GCOV_LDFLAGS$(USE_GCOV))
134134

135135
# BEGIN CRYPTO
136136
CRYPTOLIBOBJ = \
137-
crypto.lo
137+
crypto.lo \
138+
crypto_impl.lo
138139

139140
CRYPTOSRC = \
140141
$(TOP)/src/crypto.h \
141-
$(TOP)/src/crypto.c
142+
$(TOP)/src/crypto.c \
143+
$(TOP)/src/crypto_impl.c
142144

143145
# END CRYPTO
144146

@@ -546,6 +548,8 @@ opcodes.lo: opcodes.c
546548
# BEGIN CRYPTO
547549
crypto.lo: $(TOP)/src/crypto.c $(HDR)
548550
$(LTCOMPILE) -c $(TOP)/src/crypto.c
551+
crypto_impl.lo: $(TOP)/src/crypto_impl.c $(HDR)
552+
$(LTCOMPILE) -c $(TOP)/src/crypto_impl.c
549553
# END CRYPTO
550554

551555
# Rules to build individual *.o files from files in the src directory.

0 commit comments

Comments
 (0)