diff mbox series

crypto: KDF - select SHA-256 required for self-test

Message ID 2576506.vuYhMxLoTh@positron.chronox.de
State Accepted
Commit 304b4acee2f023a67f122d15a37b40ce460244d9
Headers show
Series crypto: KDF - select SHA-256 required for self-test | expand

Commit Message

Stephan Mueller Dec. 21, 2021, 7:31 p.m. UTC
The self test of the KDF is based on SHA-256. Thus, this algorithm must
be present as otherwise a warning is issued.

Reported-by: kernel test robot <oliver.sang@intel.com>
Signed-off-by: Stephan Mueller <smueller@chronox.de>
---
 crypto/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/crypto/Kconfig b/crypto/Kconfig
index 01b9ca0836a5..649ee1df05c6 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -1847,7 +1847,7 @@  config CRYPTO_JITTERENTROPY
 
 config CRYPTO_KDF800108_CTR
 	tristate
-	select CRYPTO_HASH
+	select CRYPTO_SHA256
 
 config CRYPTO_USER_API
 	tristate