summaryrefslogtreecommitdiff
path: root/crypto/Kconfig
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2015-08-13 17:28:58 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2015-08-17 16:53:44 +0800
commit0a48ecdaabf13857f888200d0bed183491026973 (patch)
tree33eaaa2ae5adf2f4785a247ff7a1fc7cc2cb5d5a /crypto/Kconfig
parent52a08691eb960af2c36ffe4fe1f001eed07cde1f (diff)
downloadlinux-crypto-0a48ecdaabf13857f888200d0bed183491026973.tar.gz
linux-crypto-0a48ecdaabf13857f888200d0bed183491026973.zip
crypto: aead - Add type-safe geniv init/exit helpers
This patch adds the helpers aead_init_geniv and aead_exit_geniv which are type-safe and intended the replace the existing geniv init/exit helpers. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r--crypto/Kconfig11
1 files changed, 8 insertions, 3 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index ac7cc622..0e35889e 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -48,6 +48,8 @@ config CRYPTO_AEAD
config CRYPTO_AEAD2
tristate
select CRYPTO_ALGAPI2
+ select CRYPTO_NULL2
+ select CRYPTO_RNG2
config CRYPTO_BLKCIPHER
tristate
@@ -150,12 +152,15 @@ config CRYPTO_GF128MUL
config CRYPTO_NULL
tristate "Null algorithms"
- select CRYPTO_ALGAPI
- select CRYPTO_BLKCIPHER
- select CRYPTO_HASH
+ select CRYPTO_NULL2
help
These are 'Null' algorithms, used by IPsec, which do nothing.
+config CRYPTO_NULL2
+ select CRYPTO_ALGAPI2
+ select CRYPTO_BLKCIPHER2
+ select CRYPTO_HASH2
+
config CRYPTO_PCRYPT
tristate "Parallel crypto engine"
depends on SMP