diff options
author | Ondrej Mosnáček <omosnacek@gmail.com> | 2017-04-02 22:19:16 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2017-04-05 16:58:37 +0300 |
commit | ad1064cd612e11b807eb764140deb5c1875ca5dc (patch) | |
tree | 9789d0db8696788a3d86be88f1e6e1ae3065b94b /crypto | |
parent | 692016bdf7cf33abaaa7f2b080b47f504c98810c (diff) | |
download | linux-ad1064cd612e11b807eb764140deb5c1875ca5dc.tar.xz |
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/Kconfig | 1 |
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 tristate "XTS support" select CRYPTO_BLKCIPHER select CRYPTO_MANAGER - select CRYPTO_GF128MUL select CRYPTO_ECB help XTS: IEEE1619/D16 narrow block cipher use with aes-xts-plain, |