aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/Makefile
diff options
context:
space:
mode:
authorGilad Ben-Yossef <gilad@benyossef.com>2017-08-21 06:51:28 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2017-09-22 05:43:07 -0400
commit4f0fc1600edbdb3612b931aa5076ca984f7ee8fe (patch)
treef143c15e9e318822891695b3e30a97bc1a2a85b6 /crypto/Makefile
parent1c9fa294fe80f85c069c64d12b2429cf99a62937 (diff)
crypto: sm3 - add OSCCA SM3 secure hash
Add OSCCA SM3 secure hash (OSCCA GM/T 0004-2012 SM3) generic hash transformation. Signed-off-by: Gilad Ben-Yossef <gilad@benyossef.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Makefile')
-rw-r--r--crypto/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/Makefile b/crypto/Makefile
index d41f0331b085..723b0b41dab9 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -70,6 +70,7 @@ obj-$(CONFIG_CRYPTO_SHA1) += sha1_generic.o
70obj-$(CONFIG_CRYPTO_SHA256) += sha256_generic.o 70obj-$(CONFIG_CRYPTO_SHA256) += sha256_generic.o
71obj-$(CONFIG_CRYPTO_SHA512) += sha512_generic.o 71obj-$(CONFIG_CRYPTO_SHA512) += sha512_generic.o
72obj-$(CONFIG_CRYPTO_SHA3) += sha3_generic.o 72obj-$(CONFIG_CRYPTO_SHA3) += sha3_generic.o
73obj-$(CONFIG_CRYPTO_SM3) += sm3_generic.o
73obj-$(CONFIG_CRYPTO_WP512) += wp512.o 74obj-$(CONFIG_CRYPTO_WP512) += wp512.o
74CFLAGS_wp512.o := $(call cc-option,-fno-schedule-insns) # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79149 75CFLAGS_wp512.o := $(call cc-option,-fno-schedule-insns) # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79149
75obj-$(CONFIG_CRYPTO_TGR192) += tgr192.o 76obj-$(CONFIG_CRYPTO_TGR192) += tgr192.o