summaryrefslogtreecommitdiffstats
path: root/crypto/modes/Makefile
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2008-12-27 13:40:45 +0000
committerAndy Polyakov <appro@openssl.org>2008-12-27 13:40:45 +0000
commitfe150ac25df9d15d149c796cc8a8435fa291dc5b (patch)
treef72845a31cc87b63ab9ceef966b83431c40809fb /crypto/modes/Makefile
parentbec45a35bb91c03056d498320b3db630304ab48f (diff)
Add modes/cts128.c, Ciphertext Stealing implementation.
Diffstat (limited to 'crypto/modes/Makefile')
-rw-r--r--crypto/modes/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/modes/Makefile b/crypto/modes/Makefile
index 94a28b612d..6c85861b6c 100644
--- a/crypto/modes/Makefile
+++ b/crypto/modes/Makefile
@@ -17,8 +17,8 @@ TEST=
APPS=
LIB=$(TOP)/libcrypto.a
-LIBSRC= cbc128.c ctr128.c cfb128.c ofb128.c
-LIBOBJ= cbc128.o ctr128.o cfb128.o ofb128.o
+LIBSRC= cbc128.c ctr128.c cts128.c cfb128.c ofb128.c
+LIBOBJ= cbc128.o ctr128.o cts128.o cfb128.o ofb128.o
SRC= $(LIBSRC)
@@ -78,4 +78,5 @@ clean:
cbc128.o: cbc128.c modes.h
cfb128.o: cfb128.c modes.h
ctr128.o: ctr128.c modes.h
+cts128.o: cts128.c modes.h
ofb128.o: modes.h ofb128.c