crypto: hash: sw: fix Kconfig dependencies
authorBenjamin Bara <Benjamin.Bara@skidata.com>
Wed, 29 Jun 2022 10:27:34 +0000 (12:27 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 26 Oct 2022 19:21:11 +0000 (15:21 -0400)
Fix SHA512 config name and add missing SHA384 config.

Signed-off-by: Benjamin Bara <Benjamin.Bara@skidata.com>
drivers/crypto/hash/Kconfig

index bf9540e..aa355c4 100644 (file)
@@ -10,7 +10,8 @@ config HASH_SOFTWARE
        depends on MD5
        depends on SHA1
        depends on SHA256
-       depends on SHA512_ALGO
+       depends on SHA384
+       depends on SHA512
        help
          Enable driver for hashing operations in software. Currently
          it support multiple hash algorithm including CRC/MD5/SHA.