aboutsummaryrefslogtreecommitdiff
path: root/src/lib/crypto/builtin/aes/deps
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2020-10-10 11:18:12 -0400
committerGreg Hudson <ghudson@mit.edu>2020-10-17 16:25:10 -0400
commitcb5f190056ef4d123c5fe5d4923982b830288438 (patch)
tree3ed48b6b5d1f02964291bbbca5e011cddfaab1be /src/lib/crypto/builtin/aes/deps
parentad1c56d9b7dc3ce37b50cb3d72ff98513bf84073 (diff)
downloadkrb5-cb5f190056ef4d123c5fe5d4923982b830288438.zip
krb5-cb5f190056ef4d123c5fe5d4923982b830288438.tar.gz
krb5-cb5f190056ef4d123c5fe5d4923982b830288438.tar.bz2
Update Gladman AES code
Update lib/crypto/builtin/aes to commit 8798ad829374cd5ff312f55ba3ccccfcf586fa11 of https://github.com/BrianGladman/aes . The following changes are made to the upstream code: * In aes.h, #defines are added to give the linker-visible symbols a prefix. * In aes.h, AES_192 is undefined, since we only need AES-128 and AES-256. * In aesopt.h, USE_INTEL_AES_IF_PRESENT and USE_VIA_ACE_IF_PRESENT are suppressed by changing the corresponding "#if 1"s to "#if 0"s. * In aesopt.h, the conditionals for ENC_UNROLL, DEC_UNROLL, ENC_ROUND, LAST_ENC_ROUND, DEC_ROUND, LAST_DEC_ROUND, and KEY_SCHED are changed from "#if 1" to "#if !defined(CONFIG_SMALL) || defined(CONFIG_SMALL_NO_CRYPTO)". bigredbutton: whitespace ticket: 8954
Diffstat (limited to 'src/lib/crypto/builtin/aes/deps')
-rw-r--r--src/lib/crypto/builtin/aes/deps12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/lib/crypto/builtin/aes/deps b/src/lib/crypto/builtin/aes/deps
index fcd5520..5acef42 100644
--- a/src/lib/crypto/builtin/aes/deps
+++ b/src/lib/crypto/builtin/aes/deps
@@ -2,8 +2,10 @@
# Generated makefile dependencies follow.
#
aescrypt.so aescrypt.po $(OUTPRE)aescrypt.$(OBJEXT): \
- $(BUILDTOP)/include/autoconf.h aes.h aescrypt.c aesopt.h
-aestab.so aestab.po $(OUTPRE)aestab.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
- aes.h aesopt.h aestab.c
-aeskey.so aeskey.po $(OUTPRE)aeskey.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
- aes.h aeskey.c aesopt.h
+ aes.h aescrypt.c aesopt.h aestab.h brg_endian.h brg_types.h
+aestab.so aestab.po $(OUTPRE)aestab.$(OBJEXT): aes.h \
+ aesopt.h aestab.c aestab.h brg_endian.h brg_types.h
+aeskey.so aeskey.po $(OUTPRE)aeskey.$(OBJEXT): aes.h \
+ aeskey.c aesopt.h aestab.h brg_endian.h brg_types.h
+aes_ni.so aes_ni.po $(OUTPRE)aes_ni.$(OBJEXT): aes.h \
+ aes_ni.c aes_ni.h aesopt.h brg_endian.h brg_types.h