mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
e5d870fa1e
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>
16 lines
416 B
Text
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.
|