From: Eric Biggers Date: Wed, 27 Aug 2025 15:11:24 +0000 (-0700) Subject: lib/crypto: chacha: Rename libchacha.c to chacha.c X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=1ae46b6eb5b9a97978fe12a71f5de53ab977297f;p=users%2Fhch%2Fmisc.git lib/crypto: chacha: Rename libchacha.c to chacha.c Rename libchacha.c to chacha.c to make the naming consistent with other algorithms and allow additional source files to be added to the libchacha module. This file currently contains chacha_crypt_generic(), but it will soon be updated to contain chacha_crypt(). Reviewed-by: Ard Biesheuvel Link: https://lore.kernel.org/r/20250827151131.27733-6-ebiggers@kernel.org Signed-off-by: Eric Biggers --- diff --git a/lib/crypto/Makefile b/lib/crypto/Makefile index e71c4bee8310..a006048ba2bd 100644 --- a/lib/crypto/Makefile +++ b/lib/crypto/Makefile @@ -18,6 +18,7 @@ libcryptoutils-y := memneq.o utils.o # chacha20_block() is used by the /dev/random driver which is always builtin obj-y += chacha-block-generic.o obj-$(CONFIG_CRYPTO_LIB_CHACHA_GENERIC) += libchacha.o +libchacha-y := chacha.o obj-$(CONFIG_CRYPTO_LIB_AES) += libaes.o libaes-y := aes.o diff --git a/lib/crypto/libchacha.c b/lib/crypto/chacha.c similarity index 100% rename from lib/crypto/libchacha.c rename to lib/crypto/chacha.c