1# SPDX-License-Identifier: GPL-2.0 2# 3# Arch-specific CryptoAPI modules. 4# 5 6obj-$(CONFIG_CRYPTO_AES_ARM) += aes-arm.o 7obj-$(CONFIG_CRYPTO_AES_ARM_BS) += aes-arm-bs.o 8obj-$(CONFIG_CRYPTO_BLAKE2B_NEON) += blake2b-neon.o 9obj-$(CONFIG_CRYPTO_NHPOLY1305_NEON) += nhpoly1305-neon.o 10obj-$(CONFIG_CRYPTO_CURVE25519_NEON) += curve25519-neon.o 11 12obj-$(CONFIG_CRYPTO_AES_ARM_CE) += aes-arm-ce.o 13obj-$(CONFIG_CRYPTO_GHASH_ARM_CE) += ghash-arm-ce.o 14 15aes-arm-y := aes-cipher-core.o aes-cipher-glue.o 16aes-arm-bs-y := aes-neonbs-core.o aes-neonbs-glue.o 17blake2b-neon-y := blake2b-neon-core.o blake2b-neon-glue.o 18aes-arm-ce-y := aes-ce-core.o aes-ce-glue.o 19ghash-arm-ce-y := ghash-ce-core.o ghash-ce-glue.o 20nhpoly1305-neon-y := nh-neon-core.o nhpoly1305-neon-glue.o 21curve25519-neon-y := curve25519-core.o curve25519-glue.o 22