summaryrefslogtreecommitdiffstats
path: root/crypto/modes/Makefile
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2014-12-06 20:53:35 +0000
committerMatt Caswell <matt@openssl.org>2014-12-08 10:27:56 +0000
commitc857a80c9dccf82de94137410c754b18e893a55d (patch)
tree9bde8561d625b8da61e598bed2e30a5f7fe68150 /crypto/modes/Makefile
parent376e2ca3e3525290619602dc6013c97c9653c037 (diff)
Add support for OCB mode as per RFC7253
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/modes/Makefile')
-rw-r--r--crypto/modes/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/crypto/modes/Makefile b/crypto/modes/Makefile
index c6ac7ee574..66cbd8fe8d 100644
--- a/crypto/modes/Makefile
+++ b/crypto/modes/Makefile
@@ -22,9 +22,9 @@ APPS=
LIB=$(TOP)/libcrypto.a
LIBSRC= cbc128.c ctr128.c cts128.c cfb128.c ofb128.c gcm128.c \
- ccm128.c xts128.c wrap128.c
+ ccm128.c xts128.c wrap128.c ocb128.c
LIBOBJ= cbc128.o ctr128.o cts128.o cfb128.o ofb128.o gcm128.o \
- ccm128.o xts128.o wrap128.o $(MODES_ASM_OBJ)
+ ccm128.o xts128.o wrap128.o ocb128.o $(MODES_ASM_OBJ)
SRC= $(LIBSRC)
@@ -138,6 +138,11 @@ gcm128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
gcm128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
gcm128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
gcm128.o: ../../include/openssl/symhacks.h gcm128.c modes_lcl.h
+ocb128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
+ocb128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
+ocb128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
+ocb128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
+ocb128.o: ../../include/openssl/symhacks.h modes_lcl.h ocb128.c
ofb128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
ofb128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
ofb128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h