summaryrefslogtreecommitdiff
path: root/Cryptlib/Makefile
diff options
context:
space:
mode:
authorGary Lin <glin@suse.com>2017-03-15 15:39:16 +0800
committerPeter Jones <pjones@redhat.com>2017-03-24 18:28:30 -0400
commit832152986545e8fc66f1ed5cf9d8bf518c7df2b3 (patch)
tree76780cd3e18c8d43fab3d812a8f617613a9522e2 /Cryptlib/Makefile
parent3ee08dde9c6541186e6b72d1fbdf1a13d516bea4 (diff)
downloadefi-boot-shim-832152986545e8fc66f1ed5cf9d8bf518c7df2b3.tar.gz
efi-boot-shim-832152986545e8fc66f1ed5cf9d8bf518c7df2b3.zip
Update Cryptlib
Update to edk2 commit 6e4489d8129d233ef0fe85eeb6eebfecafe9ea6e (CryptoPkg: Refine type cast for pointer subtraction) Also replaced CryptAes.c, CryptArc4.c, CryptTdes.c, CryptMd4.c, CryptHmacMd5.c, and CryptHmacSha1.c with the Null version since we don't really need those functions. Signed-off-by: Gary Lin <glin@suse.com>
Diffstat (limited to 'Cryptlib/Makefile')
-rw-r--r--Cryptlib/Makefile13
1 files changed, 7 insertions, 6 deletions
diff --git a/Cryptlib/Makefile b/Cryptlib/Makefile
index 3a0469db..b3a06e44 100644
--- a/Cryptlib/Makefile
+++ b/Cryptlib/Makefile
@@ -20,16 +20,17 @@ endif
LDFLAGS = -nostdlib -znocombreloc
TARGET = libcryptlib.a
-OBJS = Hash/CryptMd4.o \
+OBJS = Hash/CryptMd4Null.o \
Hash/CryptMd5.o \
Hash/CryptSha1.o \
Hash/CryptSha256.o \
Hash/CryptSha512.o \
- Hmac/CryptHmacMd5.o \
- Hmac/CryptHmacSha1.o \
- Cipher/CryptAes.o \
- Cipher/CryptTdes.o \
- Cipher/CryptArc4.o \
+ Hmac/CryptHmacMd5Null.o \
+ Hmac/CryptHmacSha1Null.o \
+ Hmac/CryptHmacSha256Null.o \
+ Cipher/CryptAesNull.o \
+ Cipher/CryptTdesNull.o \
+ Cipher/CryptArc4Null.o \
Rand/CryptRand.o \
Pk/CryptRsaBasic.o \
Pk/CryptRsaExtNull.o \