summaryrefslogtreecommitdiffstats
path: root/arch/arm64/crypto/Makefile
diff options
context:
space:
mode:
authorArd Biesheuvel2014-03-26 20:53:05 +0100
committerArd Biesheuvel2014-05-14 19:04:07 +0200
commitfdd2389457b209a9723c3be818fcf301f35db906 (patch)
tree086cdabe6082cf998ef5ca07fb9235ad04c1d8d6 /arch/arm64/crypto/Makefile
parentarm64/crypto: SHA-224/SHA-256 using ARMv8 Crypto Extensions (diff)
downloadkernel-qcow2-linux-fdd2389457b209a9723c3be818fcf301f35db906.tar.gz
kernel-qcow2-linux-fdd2389457b209a9723c3be818fcf301f35db906.tar.xz
kernel-qcow2-linux-fdd2389457b209a9723c3be818fcf301f35db906.zip
arm64/crypto: GHASH secure hash using ARMv8 Crypto Extensions
This is a port to ARMv8 (Crypto Extensions) of the Intel implementation of the GHASH Secure Hash (used in the Galois/Counter chaining mode). It relies on the optional PMULL/PMULL2 instruction (polynomial multiply long, what Intel call carry-less multiply). Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/arm64/crypto/Makefile')
-rw-r--r--arch/arm64/crypto/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm64/crypto/Makefile b/arch/arm64/crypto/Makefile
index 0b3885a60d43..e8c81a068868 100644
--- a/arch/arm64/crypto/Makefile
+++ b/arch/arm64/crypto/Makefile
@@ -13,3 +13,6 @@ sha1-ce-y := sha1-ce-glue.o sha1-ce-core.o
obj-$(CONFIG_CRYPTO_SHA2_ARM64_CE) += sha2-ce.o
sha2-ce-y := sha2-ce-glue.o sha2-ce-core.o
+
+obj-$(CONFIG_CRYPTO_GHASH_ARM64_CE) += ghash-ce.o
+ghash-ce-y := ghash-ce-glue.o ghash-ce-core.o