diff options
author | Stephan Mueller <smueller@chronox.de> | 2014-12-25 23:00:39 +0100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2014-12-29 21:39:27 +1100 |
commit | 2f3755381da8d592656f1ef6868fa9f96c450ba9 (patch) | |
tree | bc01591cf7fed157c87d43a70e63169c39191253 /crypto/Kconfig | |
parent | 5afdfd22e6ba2260129a2a7113ab0916339c4205 (diff) | |
download | linux-2f3755381da8d592656f1ef6868fa9f96c450ba9.tar.bz2 |
crypto: algif_rng - enable RNG interface compilation
Enable compilation of the RNG AF_ALG support and provide a Kconfig
option to compile the RNG AF_ALG support.
Signed-off-by: Stephan Mueller <smueller@chronox.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r-- | crypto/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index 1618468b1fcb..50f4da44a304 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -1514,6 +1514,15 @@ config CRYPTO_USER_API_SKCIPHER This option enables the user-spaces interface for symmetric key cipher algorithms. +config CRYPTO_USER_API_RNG + tristate "User-space interface for random number generator algorithms" + depends on NET + select CRYPTO_RNG + select CRYPTO_USER_API + help + This option enables the user-spaces interface for random + number generator algorithms. + config CRYPTO_HASH_INFO bool |