mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00

Continue disentangling the crypto library functions from the generic crypto infrastructure by moving the arm BLAKE2s, ChaCha, and Poly1305 library functions into a new directory arch/arm/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>
8 lines
175 B
C
8 lines
175 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include <crypto/internal/blake2s.h>
|
|
#include <linux/module.h>
|
|
|
|
/* defined in blake2s-core.S */
|
|
EXPORT_SYMBOL(blake2s_compress);
|