diff options
author | Eric Biggers <ebiggers@google.com> | 2018-02-20 10:48:16 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2018-03-02 19:03:29 +0300 |
commit | c1679171c61c2998a16dc4cc8b0ed0569db1fba9 (patch) | |
tree | 8fee3dff974c3dc8137b4b37e62f14444e899830 /crypto/Kconfig | |
parent | 4bd969243143e224d5aa450fdea1c882a75aa58e (diff) | |
download | linux-c1679171c61c2998a16dc4cc8b0ed0569db1fba9.tar.xz |
crypto: x86/blowfish: convert to skcipher interface
Convert the x86 asm implementation of Blowfish from the (deprecated)
blkcipher interface over to the skcipher interface.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r-- | crypto/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index 536a7fac205f..fb58cb4b6826 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -1114,7 +1114,7 @@ config CRYPTO_BLOWFISH_COMMON config CRYPTO_BLOWFISH_X86_64 tristate "Blowfish cipher algorithm (x86_64)" depends on X86 && 64BIT - select CRYPTO_ALGAPI + select CRYPTO_BLKCIPHER select CRYPTO_BLOWFISH_COMMON help Blowfish cipher algorithm (x86_64), by Bruce Schneier. |