diff options
author | Corentin Labbe <clabbe@baylibre.com> | 2020-04-24 13:40:46 +0000 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2020-04-30 15:19:34 +1000 |
commit | f23efcbcc523b09c2ee359a35eb3897dc1764fd3 (patch) | |
tree | 48961ceb68fd646f58260e451363ff87d7fa6113 /crypto | |
parent | 43f3c2b4dde331d380e4f575d3e5798f27867b3e (diff) | |
download | linux-f23efcbcc523b09c2ee359a35eb3897dc1764fd3.tar.gz linux-f23efcbcc523b09c2ee359a35eb3897dc1764fd3.tar.bz2 linux-f23efcbcc523b09c2ee359a35eb3897dc1764fd3.zip |
crypto: ctr - no longer needs CRYPTO_SEQIV
As comment of the v2, Herbert said: "The SEQIV select from CTR is historical
and no longer necessary."
So let's get rid of it.
Signed-off-by: Corentin Labbe <clabbe@baylibre.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 c24a47406f8f..64caec4c52b6 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -370,7 +370,6 @@ config CRYPTO_CFB config CRYPTO_CTR tristate "CTR support" select CRYPTO_SKCIPHER - select CRYPTO_SEQIV select CRYPTO_MANAGER help CTR: Counter mode |