RE: [PATCH 3/4] crypto: hash: Add software hash DM driver

2021-09-21 Thread ChiaWei Wang
Hi Alex, > From: Alex G. > Sent: Thursday, September 16, 2021 11:49 PM > > On 7/29/21 8:08 PM, Chia-Wei Wang wrote: > > 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. > > > >

Re: [PATCH 3/4] crypto: hash: Add software hash DM driver

2021-09-16 Thread Alex G.
On 7/29/21 8:08 PM, Chia-Wei Wang wrote: 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 --- drivers/crypto/hash/Kconfig | 11 ++ drivers/crypto/has

Re: [PATCH 3/4] crypto: hash: Add software hash DM driver

2021-09-02 Thread Tom Rini
On Fri, Jul 30, 2021 at 09:08:04AM +0800, Chia-Wei Wang wrote: > 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 Applied to u-boot/next, thanks! -

[PATCH 3/4] crypto: hash: Add software hash DM driver

2021-07-29 Thread Chia-Wei Wang
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 --- drivers/crypto/hash/Kconfig | 11 ++ drivers/crypto/hash/Makefile | 1 + drivers/crypto/hash/hash_sw