1 # SPDX-License-Identifier: GPL-2.0 1 # SPDX-License-Identifier: GPL-2.0 2 2 3 obj-$(CONFIG_CRYPTO_LIB_UTILS) << 4 libcryptoutils-y << 5 << 6 # chacha is used by the /dev/random driver whi 3 # chacha is used by the /dev/random driver which is always builtin 7 obj-y 4 obj-y += chacha.o 8 obj-$(CONFIG_CRYPTO_LIB_CHACHA_GENERIC) 5 obj-$(CONFIG_CRYPTO_LIB_CHACHA_GENERIC) += libchacha.o 9 6 10 obj-$(CONFIG_CRYPTO_LIB_AES) 7 obj-$(CONFIG_CRYPTO_LIB_AES) += libaes.o 11 libaes-y 8 libaes-y := aes.o 12 9 13 obj-$(CONFIG_CRYPTO_LIB_AESCFB) << 14 libaescfb-y << 15 << 16 obj-$(CONFIG_CRYPTO_LIB_AESGCM) << 17 libaesgcm-y << 18 << 19 obj-$(CONFIG_CRYPTO_LIB_ARC4) 10 obj-$(CONFIG_CRYPTO_LIB_ARC4) += libarc4.o 20 libarc4-y 11 libarc4-y := arc4.o 21 12 22 obj-$(CONFIG_CRYPTO_LIB_GF128MUL) << 23 << 24 # blake2s is used by the /dev/random driver wh 13 # blake2s is used by the /dev/random driver which is always builtin 25 obj-y 14 obj-y += libblake2s.o 26 libblake2s-y 15 libblake2s-y := blake2s.o 27 libblake2s-$(CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC 16 libblake2s-$(CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC) += blake2s-generic.o 28 17 29 obj-$(CONFIG_CRYPTO_LIB_CHACHA20POLY1305) 18 obj-$(CONFIG_CRYPTO_LIB_CHACHA20POLY1305) += libchacha20poly1305.o 30 libchacha20poly1305-y 19 libchacha20poly1305-y += chacha20poly1305.o 31 20 32 obj-$(CONFIG_CRYPTO_LIB_CURVE25519_GENERIC) 21 obj-$(CONFIG_CRYPTO_LIB_CURVE25519_GENERIC) += libcurve25519-generic.o 33 libcurve25519-generic-y 22 libcurve25519-generic-y := curve25519-fiat32.o 34 libcurve25519-generic-$(CONFIG_ARCH_SUPPORTS_I 23 libcurve25519-generic-$(CONFIG_ARCH_SUPPORTS_INT128) := curve25519-hacl64.o 35 libcurve25519-generic-y 24 libcurve25519-generic-y += curve25519-generic.o 36 25 37 obj-$(CONFIG_CRYPTO_LIB_CURVE25519) 26 obj-$(CONFIG_CRYPTO_LIB_CURVE25519) += libcurve25519.o 38 libcurve25519-y 27 libcurve25519-y += curve25519.o 39 28 40 obj-$(CONFIG_CRYPTO_LIB_DES) 29 obj-$(CONFIG_CRYPTO_LIB_DES) += libdes.o 41 libdes-y 30 libdes-y := des.o 42 31 43 obj-$(CONFIG_CRYPTO_LIB_POLY1305_GENERIC) 32 obj-$(CONFIG_CRYPTO_LIB_POLY1305_GENERIC) += libpoly1305.o 44 libpoly1305-y 33 libpoly1305-y := poly1305-donna32.o 45 libpoly1305-$(CONFIG_ARCH_SUPPORTS_INT128) 34 libpoly1305-$(CONFIG_ARCH_SUPPORTS_INT128) := poly1305-donna64.o 46 libpoly1305-y 35 libpoly1305-y += poly1305.o 47 36 48 obj-$(CONFIG_CRYPTO_LIB_SHA1) << 49 libsha1-y << 50 << 51 obj-$(CONFIG_CRYPTO_LIB_SHA256) 37 obj-$(CONFIG_CRYPTO_LIB_SHA256) += libsha256.o 52 libsha256-y 38 libsha256-y := sha256.o 53 39 >> 40 obj-$(CONFIG_CRYPTO_LIB_SM4) += libsm4.o >> 41 libsm4-y := sm4.o >> 42 54 ifneq ($(CONFIG_CRYPTO_MANAGER_DISABLE_TESTS), 43 ifneq ($(CONFIG_CRYPTO_MANAGER_DISABLE_TESTS),y) 55 libblake2s-y 44 libblake2s-y += blake2s-selftest.o 56 libchacha20poly1305-y 45 libchacha20poly1305-y += chacha20poly1305-selftest.o 57 libcurve25519-y 46 libcurve25519-y += curve25519-selftest.o 58 endif 47 endif 59 << 60 obj-$(CONFIG_MPILIB) += mpi/ <<
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.