aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorOndrej Mosnáček2017-04-02 14:19:16 -0500
committerHerbert Xu2017-04-05 08:58:37 -0500
commitad1064cd612e11b807eb764140deb5c1875ca5dc (patch)
tree9789d0db8696788a3d86be88f1e6e1ae3065b94b /crypto
parent692016bdf7cf33abaaa7f2b080b47f504c98810c (diff)
downloadkernel-ad1064cd612e11b807eb764140deb5c1875ca5dc.tar.gz
kernel-ad1064cd612e11b807eb764140deb5c1875ca5dc.tar.xz
kernel-ad1064cd612e11b807eb764140deb5c1875ca5dc.zip
crypto: xts - drop gf128mul dependency
Since the gf128mul_x_ble function used by xts.c is now defined inline in the header file, the XTS module no longer depends on gf128mul. Therefore, the 'select CRYPTO_GF128MUL' line can be safely removed. Signed-off-by: Ondrej Mosnacek <omosnacek@gmail.com> Reviewd-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/Kconfig1
1 files changed, 0 insertions, 1 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index 6854c1fe54b7..aac4bc90a138 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -374,7 +374,6 @@ config CRYPTO_XTS
374 tristate "XTS support" 374 tristate "XTS support"
375 select CRYPTO_BLKCIPHER 375 select CRYPTO_BLKCIPHER
376 select CRYPTO_MANAGER 376 select CRYPTO_MANAGER
377 select CRYPTO_GF128MUL
378 select CRYPTO_ECB 377 select CRYPTO_ECB
379 help 378 help
380 XTS: IEEE1619/D16 narrow block cipher use with aes-xts-plain, 379 XTS: IEEE1619/D16 narrow block cipher use with aes-xts-plain,