Sfoglia il codice sorgente

crypto: algif - enable AEAD interface compilation

Enable compilation of the AEAD AF_ALG support and provide a Kconfig
option to compile the AEAD AF_ALG support.

Signed-off-by: Stephan Mueller <smueller@chronox.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Stephan Mueller 10 anni fa
parent
commit
44cac4fce9
2 ha cambiato i file con 10 aggiunte e 0 eliminazioni
  1. 9 0
      crypto/Kconfig
  2. 1 0
      crypto/Makefile

+ 9 - 0
crypto/Kconfig

@@ -1552,6 +1552,15 @@ config CRYPTO_USER_API_RNG
 	  This option enables the user-spaces interface for random
 	  This option enables the user-spaces interface for random
 	  number generator algorithms.
 	  number generator algorithms.
 
 
+config CRYPTO_USER_API_AEAD
+	tristate "User-space interface for AEAD cipher algorithms"
+	depends on NET
+	select CRYPTO_AEAD
+	select CRYPTO_USER_API
+	help
+	  This option enables the user-spaces interface for AEAD
+	  cipher algorithms.
+
 config CRYPTO_HASH_INFO
 config CRYPTO_HASH_INFO
 	bool
 	bool
 
 

+ 1 - 0
crypto/Makefile

@@ -100,6 +100,7 @@ obj-$(CONFIG_CRYPTO_USER_API) += af_alg.o
 obj-$(CONFIG_CRYPTO_USER_API_HASH) += algif_hash.o
 obj-$(CONFIG_CRYPTO_USER_API_HASH) += algif_hash.o
 obj-$(CONFIG_CRYPTO_USER_API_SKCIPHER) += algif_skcipher.o
 obj-$(CONFIG_CRYPTO_USER_API_SKCIPHER) += algif_skcipher.o
 obj-$(CONFIG_CRYPTO_USER_API_RNG) += algif_rng.o
 obj-$(CONFIG_CRYPTO_USER_API_RNG) += algif_rng.o
+obj-$(CONFIG_CRYPTO_USER_API_AEAD) += algif_aead.o
 
 
 #
 #
 # generic algorithms and the async_tx api
 # generic algorithms and the async_tx api