1# SPDX-License-Identifier: GPL-2.0 2 3obj-$(CONFIG_CRYPTO_LIB_UTILS) += libcryptoutils.o 4libcryptoutils-y := memneq.o utils.o 5 6# chacha is used by the /dev/random driver which is always builtin 7obj-y += chacha.o 8obj-$(CONFIG_CRYPTO_LIB_CHACHA_GENERIC) += libchacha.o 9 10obj-$(CONFIG_CRYPTO_LIB_AES) += libaes.o 11libaes-y := aes.o 12 13obj-$(CONFIG_CRYPTO_LIB_ARC4) += libarc4.o 14libarc4-y := arc4.o 15 16obj-$(CONFIG_CRYPTO_LIB_GF128MUL) += gf128mul.o 17 18# blake2s is used by the /dev/random driver which is always builtin 19obj-y += libblake2s.o 20libblake2s-y := blake2s.o 21libblake2s-$(CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC) += blake2s-generic.o 22 23obj-$(CONFIG_CRYPTO_LIB_CHACHA20POLY1305) += libchacha20poly1305.o 24libchacha20poly1305-y += chacha20poly1305.o 25 26obj-$(CONFIG_CRYPTO_LIB_CURVE25519_GENERIC) += libcurve25519-generic.o 27libcurve25519-generic-y := curve25519-fiat32.o 28libcurve25519-generic-$(CONFIG_ARCH_SUPPORTS_INT128) := curve25519-hacl64.o 29libcurve25519-generic-y += curve25519-generic.o 30 31obj-$(CONFIG_CRYPTO_LIB_CURVE25519) += libcurve25519.o 32libcurve25519-y += curve25519.o 33 34obj-$(CONFIG_CRYPTO_LIB_DES) += libdes.o 35libdes-y := des.o 36 37obj-$(CONFIG_CRYPTO_LIB_POLY1305_GENERIC) += libpoly1305.o 38libpoly1305-y := poly1305-donna32.o 39libpoly1305-$(CONFIG_ARCH_SUPPORTS_INT128) := poly1305-donna64.o 40libpoly1305-y += poly1305.o 41 42obj-$(CONFIG_CRYPTO_LIB_SHA1) += libsha1.o 43libsha1-y := sha1.o 44 45obj-$(CONFIG_CRYPTO_LIB_SHA256) += libsha256.o 46libsha256-y := sha256.o 47 48ifneq ($(CONFIG_CRYPTO_MANAGER_DISABLE_TESTS),y) 49libblake2s-y += blake2s-selftest.o 50libchacha20poly1305-y += chacha20poly1305-selftest.o 51libcurve25519-y += curve25519-selftest.o 52endif 53