Commit c8a3315a authored by Eric Biggers's avatar Eric Biggers Committed by Herbert Xu

crypto: make all templates select CRYPTO_MANAGER

The "cryptomgr" module is required for templates to be used.  Many
templates select it, but others don't.  Make all templates select it.
Signed-off-by: default avatarEric Biggers <ebiggers@google.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 929d34ca
...@@ -282,6 +282,7 @@ config CRYPTO_CCM ...@@ -282,6 +282,7 @@ config CRYPTO_CCM
select CRYPTO_CTR select CRYPTO_CTR
select CRYPTO_HASH select CRYPTO_HASH
select CRYPTO_AEAD select CRYPTO_AEAD
select CRYPTO_MANAGER
help help
Support for Counter with CBC MAC. Required for IPsec. Support for Counter with CBC MAC. Required for IPsec.
...@@ -291,6 +292,7 @@ config CRYPTO_GCM ...@@ -291,6 +292,7 @@ config CRYPTO_GCM
select CRYPTO_AEAD select CRYPTO_AEAD
select CRYPTO_GHASH select CRYPTO_GHASH
select CRYPTO_NULL select CRYPTO_NULL
select CRYPTO_MANAGER
help help
Support for Galois/Counter Mode (GCM) and Galois Message Support for Galois/Counter Mode (GCM) and Galois Message
Authentication Code (GMAC). Required for IPSec. Authentication Code (GMAC). Required for IPSec.
...@@ -300,6 +302,7 @@ config CRYPTO_CHACHA20POLY1305 ...@@ -300,6 +302,7 @@ config CRYPTO_CHACHA20POLY1305
select CRYPTO_CHACHA20 select CRYPTO_CHACHA20
select CRYPTO_POLY1305 select CRYPTO_POLY1305
select CRYPTO_AEAD select CRYPTO_AEAD
select CRYPTO_MANAGER
help help
ChaCha20-Poly1305 AEAD support, RFC7539. ChaCha20-Poly1305 AEAD support, RFC7539.
...@@ -414,6 +417,7 @@ config CRYPTO_SEQIV ...@@ -414,6 +417,7 @@ config CRYPTO_SEQIV
select CRYPTO_BLKCIPHER select CRYPTO_BLKCIPHER
select CRYPTO_NULL select CRYPTO_NULL
select CRYPTO_RNG_DEFAULT select CRYPTO_RNG_DEFAULT
select CRYPTO_MANAGER
help help
This IV generator generates an IV based on a sequence number by This IV generator generates an IV based on a sequence number by
xoring it with a salt. This algorithm is mainly useful for CTR xoring it with a salt. This algorithm is mainly useful for CTR
...@@ -423,6 +427,7 @@ config CRYPTO_ECHAINIV ...@@ -423,6 +427,7 @@ config CRYPTO_ECHAINIV
select CRYPTO_AEAD select CRYPTO_AEAD
select CRYPTO_NULL select CRYPTO_NULL
select CRYPTO_RNG_DEFAULT select CRYPTO_RNG_DEFAULT
select CRYPTO_MANAGER
default m default m
help help
This IV generator generates an IV based on the encryption of This IV generator generates an IV based on the encryption of
...@@ -459,6 +464,7 @@ config CRYPTO_CTR ...@@ -459,6 +464,7 @@ config CRYPTO_CTR
config CRYPTO_CTS config CRYPTO_CTS
tristate "CTS support" tristate "CTS support"
select CRYPTO_BLKCIPHER select CRYPTO_BLKCIPHER
select CRYPTO_MANAGER
help help
CTS: Cipher Text Stealing CTS: Cipher Text Stealing
This is the Cipher Text Stealing mode as described by This is the Cipher Text Stealing mode as described by
...@@ -524,6 +530,7 @@ config CRYPTO_XTS ...@@ -524,6 +530,7 @@ config CRYPTO_XTS
config CRYPTO_KEYWRAP config CRYPTO_KEYWRAP
tristate "Key wrapping support" tristate "Key wrapping support"
select CRYPTO_BLKCIPHER select CRYPTO_BLKCIPHER
select CRYPTO_MANAGER
help help
Support for key wrapping (NIST SP800-38F / RFC3394) without Support for key wrapping (NIST SP800-38F / RFC3394) without
padding. padding.
...@@ -554,6 +561,7 @@ config CRYPTO_ADIANTUM ...@@ -554,6 +561,7 @@ config CRYPTO_ADIANTUM
select CRYPTO_CHACHA20 select CRYPTO_CHACHA20
select CRYPTO_POLY1305 select CRYPTO_POLY1305
select CRYPTO_NHPOLY1305 select CRYPTO_NHPOLY1305
select CRYPTO_MANAGER
help help
Adiantum is a tweakable, length-preserving encryption mode Adiantum is a tweakable, length-preserving encryption mode
designed for fast and secure disk encryption, especially on designed for fast and secure disk encryption, especially on
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment