]> www.infradead.org Git - users/jedix/linux-maple.git/commit
crypto: mips - move library functions to arch/mips/lib/crypto/
authorEric Biggers <ebiggers@google.com>
Tue, 22 Apr 2025 15:27:10 +0000 (08:27 -0700)
committerHerbert Xu <herbert@gondor.apana.org.au>
Mon, 28 Apr 2025 11:40:53 +0000 (19:40 +0800)
commit939a54ac073808db15ed411d563dfadb3ef12798
tree31fb16e1a1a1d76d7ed28042b5548dee0c80d1a3
parentcc16e228a205ffe26c6f71a9ed165fe964f3d638
crypto: mips - move library functions to arch/mips/lib/crypto/

Continue disentangling the crypto library functions from the generic
crypto infrastructure by moving the mips ChaCha and Poly1305 library
functions into a new directory arch/mips/lib/crypto/ that does not
depend on CRYPTO.  This mirrors the distinction between crypto/ and
lib/crypto/.

Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
arch/mips/crypto/Kconfig
arch/mips/crypto/Makefile
arch/mips/lib/Makefile
arch/mips/lib/crypto/.gitignore [new file with mode: 0644]
arch/mips/lib/crypto/Kconfig [new file with mode: 0644]
arch/mips/lib/crypto/Makefile [new file with mode: 0644]
arch/mips/lib/crypto/chacha-core.S [moved from arch/mips/crypto/chacha-core.S with 100% similarity]
arch/mips/lib/crypto/chacha-glue.c [moved from arch/mips/crypto/chacha-glue.c with 100% similarity]
arch/mips/lib/crypto/poly1305-glue.c [moved from arch/mips/crypto/poly1305-glue.c with 100% similarity]
arch/mips/lib/crypto/poly1305-mips.pl [moved from arch/mips/crypto/poly1305-mips.pl with 100% similarity]
lib/crypto/Kconfig