aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/mips/lib/crypto/poly1305-glue.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2025-05-05crypto: lib/poly1305 - Use block-only interfaceHerbert Xu1-60/+0
Now that every architecture provides a block function, use that to implement the lib/poly1305 and remove the old per-arch code. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
2025-05-05crypto: mips/poly1305 - Add block-only interfaceHerbert Xu1-9/+20
Add block-only interface. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
2025-04-28crypto: mips - move library functions to arch/mips/lib/crypto/Eric Biggers1-0/+82
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>