mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-04-13 09:59:31 +00:00
crypto: skcipher - Add dependency on ecb
As lskcipher requires the ecb wrapper for the transition add an
explicit dependency on it so that it is always present. This can
be removed once all simple ciphers have been converted to lskcipher.
Reported-by: Nathan Chancellor <nathan@kernel.org>
Fixes: 705b52fef3
("crypto: cbc - Convert from skcipher to lskcipher")
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Tested-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
4999999ed7
commit
845346841b
1 changed files with 2 additions and 1 deletions
|
@ -85,6 +85,7 @@ config CRYPTO_SKCIPHER
|
|||
tristate
|
||||
select CRYPTO_SKCIPHER2
|
||||
select CRYPTO_ALGAPI
|
||||
select CRYPTO_ECB
|
||||
|
||||
config CRYPTO_SKCIPHER2
|
||||
tristate
|
||||
|
@ -689,7 +690,7 @@ config CRYPTO_CTS
|
|||
|
||||
config CRYPTO_ECB
|
||||
tristate "ECB (Electronic Codebook)"
|
||||
select CRYPTO_SKCIPHER
|
||||
select CRYPTO_SKCIPHER2
|
||||
select CRYPTO_MANAGER
|
||||
help
|
||||
ECB (Electronic Codebook) mode (NIST SP800-38A)
|
||||
|
|
Loading…
Add table
Reference in a new issue