summaryrefslogtreecommitdiff
path: root/crypto/Kconfig
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2018-02-19 23:48:11 -0800
committerHerbert Xu <herbert@gondor.apana.org.au>2018-03-03 00:03:25 +0800
commit206a9b3c5d2e801f6d79c047ade9ee1da26eab4f (patch)
treedcaf244cd092f8d3ca1cf207d1e0127ee224f253 /crypto/Kconfig
parent2e63ab048ab68abcd63402560b1af54e75ef68e4 (diff)
downloadlinux-crypto-206a9b3c5d2e801f6d79c047ade9ee1da26eab4f.tar.gz
linux-crypto-206a9b3c5d2e801f6d79c047ade9ee1da26eab4f.zip
crypto: x86/twofish-avx - convert to skcipher interface
Convert the AVX implementation of Twofish from the (deprecated) ablkcipher and blkcipher interfaces over to the skcipher interface. Note that this includes replacing the use of ablk_helper with crypto_simd. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to '')
-rw-r--r--crypto/Kconfig6
1 files changed, 2 insertions, 4 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index ac19f3ed..03ebb34b 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -1601,14 +1601,12 @@ config CRYPTO_TWOFISH_X86_64_3WAY
config CRYPTO_TWOFISH_AVX_X86_64
tristate "Twofish cipher algorithm (x86_64/AVX)"
depends on X86 && 64BIT
- select CRYPTO_ALGAPI
- select CRYPTO_CRYPTD
- select CRYPTO_ABLK_HELPER
+ select CRYPTO_BLKCIPHER
select CRYPTO_GLUE_HELPER_X86
+ select CRYPTO_SIMD
select CRYPTO_TWOFISH_COMMON
select CRYPTO_TWOFISH_X86_64
select CRYPTO_TWOFISH_X86_64_3WAY
- select CRYPTO_XTS
help
Twofish cipher algorithm (x86_64/AVX).