diff options
author | Benjamin Bara <Benjamin.Bara@skidata.com> | 2022-06-29 12:27:34 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-10-26 15:21:11 -0400 |
commit | b567eae0c502b17879538864a4fbb53e86b7bb9f (patch) | |
tree | bd9b16412a66e41749d419584f48d1d0cf14fba4 /drivers/crypto | |
parent | 06377c5a1fce4d1e9b7a5dfb62a66c4fe0c076ce (diff) | |
download | u-boot-b567eae0c502b17879538864a4fbb53e86b7bb9f.tar.gz u-boot-b567eae0c502b17879538864a4fbb53e86b7bb9f.tar.bz2 u-boot-b567eae0c502b17879538864a4fbb53e86b7bb9f.zip |
crypto: hash: sw: fix Kconfig dependencies
Fix SHA512 config name and add missing SHA384 config.
Signed-off-by: Benjamin Bara <Benjamin.Bara@skidata.com>
Diffstat (limited to 'drivers/crypto')
-rw-r--r-- | drivers/crypto/hash/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/crypto/hash/Kconfig b/drivers/crypto/hash/Kconfig index bf9540eca6..aa355c44be 100644 --- a/drivers/crypto/hash/Kconfig +++ b/drivers/crypto/hash/Kconfig @@ -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. |