Re: [PATCH v5 1/5] dm: crypto: Define UCLASS API for ECDSA signature verification

2021-05-19 Thread Simon Glass
Hi Alex, On Mon, 17 May 2021 at 12:39, Alexandru Gagniuc wrote: > > Define a UCLASS API for verifying ECDSA signatures. Unlike > UCLASS_MOD_EXP, which focuses strictly on modular exponentiation, > the ECDSA class focuses on verification. This is done so that it > better aligns with mach-specific

[PATCH v5 1/5] dm: crypto: Define UCLASS API for ECDSA signature verification

2021-05-17 Thread Alexandru Gagniuc
Define a UCLASS API for verifying ECDSA signatures. Unlike UCLASS_MOD_EXP, which focuses strictly on modular exponentiation, the ECDSA class focuses on verification. This is done so that it better aligns with mach-specific implementations, such as stm32mp. Signed-off-by: Alexandru Gagniuc --- in