Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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_NHPOLY1305_NEON) += nhpoly1305-neon.o
9
10obj-$(CONFIG_CRYPTO_AES_ARM_CE) += aes-arm-ce.o
11obj-$(CONFIG_CRYPTO_GHASH_ARM_CE) += ghash-arm-ce.o
12
13aes-arm-y := aes-cipher-core.o aes-cipher-glue.o
14aes-arm-bs-y := aes-neonbs-core.o aes-neonbs-glue.o
15aes-arm-ce-y := aes-ce-core.o aes-ce-glue.o
16ghash-arm-ce-y := ghash-ce-core.o ghash-ce-glue.o
17nhpoly1305-neon-y := nh-neon-core.o nhpoly1305-neon-glue.o