summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2020-01-17 12:01:36 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2022-07-07 13:26:38 +0200
commit73793b537e653bd594192a6f9a8471bb98b7089d (patch)
tree95c8416b0cd3a2102cf85f3439763f8514b20341
parent1e2226d2df0a186b49f52c60a0b189ffcf8ecaf6 (diff)
downloadlinux-crypto-73793b537e653bd594192a6f9a8471bb98b7089d.tar.gz
linux-crypto-73793b537e653bd594192a6f9a8471bb98b7089d.zip
crypto: Kconfig - allow tests to be disabled when manager is disabled
commit da1db20dc7675041106813bea44ce06e74c9a588 upstream. The library code uses CRYPTO_MANAGER_DISABLE_TESTS to conditionalize its tests, but the library code can also exist without CRYPTO_MANAGER. That means on minimal configs, the test code winds up being built with no way to disable it. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--crypto/Kconfig4
1 files changed, 0 insertions, 4 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index 5bf4537c..d655647f 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -136,8 +136,6 @@ config CRYPTO_USER
Userspace configuration for cryptographic instantiations such as
cbc(aes).
-if CRYPTO_MANAGER2
-
config CRYPTO_MANAGER_DISABLE_TESTS
bool "Disable run-time self tests"
default y
@@ -155,8 +153,6 @@ config CRYPTO_MANAGER_EXTRA_TESTS
This is intended for developer use only, as these tests take much
longer to run than the normal self tests.
-endif # if CRYPTO_MANAGER2
-
config CRYPTO_GF128MUL
tristate