diff options
author | Eric Biggers <ebiggers@google.com> | 2025-04-22 08:27:14 -0700 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2025-04-28 19:40:54 +0800 |
commit | c7c18c94a6becc42c71a17fdc6a551aa8efb2999 (patch) | |
tree | fb9d365204cf62158091cba77af05adff98e7dc3 /lib/crypto | |
parent | 3ea91323fe32011092fc75575d9a074ab374d673 (diff) |
crypto: x86 - move library functions to arch/x86/lib/crypto/
Continue disentangling the crypto library functions from the generic
crypto infrastructure by moving the x86 BLAKE2s, ChaCha, and Poly1305
library functions into a new directory arch/x86/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>
Diffstat (limited to 'lib/crypto')
-rw-r--r-- | lib/crypto/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/crypto/Kconfig b/lib/crypto/Kconfig index db19a7acc2fb..f321fe1a8681 100644 --- a/lib/crypto/Kconfig +++ b/lib/crypto/Kconfig @@ -174,6 +174,9 @@ endif if S390 source "arch/s390/lib/crypto/Kconfig" endif +if X86 +source "arch/x86/lib/crypto/Kconfig" +endif endif endmenu |