summaryrefslogtreecommitdiffstats
path: root/crypto/modes/Makefile
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-04-12 23:21:33 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-04-12 23:21:33 +0000
commit32a2d8ddfebdde06bfdf4fdac54d487c5d03cbea (patch)
tree65c2b96de034be57560a3cc7943890ce62d6b2ce /crypto/modes/Makefile
parent4bd1e895faa35a8d4810402fe3ba9d07c1166908 (diff)
Provisional AES XTS support.
Diffstat (limited to 'crypto/modes/Makefile')
-rw-r--r--crypto/modes/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/modes/Makefile b/crypto/modes/Makefile
index 28ee07c3fa..57433fdbd0 100644
--- a/crypto/modes/Makefile
+++ b/crypto/modes/Makefile
@@ -21,9 +21,9 @@ TEST=
APPS=
LIB=$(TOP)/libcrypto.a
-LIBSRC= cbc128.c ctr128.c cts128.c cfb128.c ofb128.c gcm128.c
+LIBSRC= cbc128.c ctr128.c cts128.c cfb128.c ofb128.c gcm128.c xts128.c
LIBOBJ= cbc128.o ctr128.o cts128.o cfb128.o ofb128.o gcm128.o \
- $(MODES_ASM_OBJ)
+ xts128.o $(MODES_ASM_OBJ)
SRC= $(LIBSRC)