u-boot/drivers/crypto/hash/Kconfig
Chia-Wei Wang e5d870fa1e crypto: hash: Add software hash DM driver
Add purely software-implmented drivers to support multiple
hash operations including CRC, MD5, and SHA family.

This driver is based on the new hash uclass.

Signed-off-by: Chia-Wei Wang <chiawei_wang@aspeedtech.com>
2021-09-01 19:25:37 -04:00

16 lines
416 B
Text

config DM_HASH
bool "Enable Driver Model for Hash"
depends on DM
help
If you want to use driver model for Hash, say Y.
config HASH_SOFTWARE
bool "Enable driver for Hash in software"
depends on DM_HASH
depends on MD5
depends on SHA1
depends on SHA256
depends on SHA512_ALGO
help
Enable driver for hashing operations in software. Currently
it support multiple hash algorithm including CRC/MD5/SHA.