Re: [PATCH 3/5] lib: ecdsa: Implement signature verification for crypto_algo API

2021-02-09 Thread Alex G.
On 2/9/21 9:56 AM, Patrick DELAUNAY wrote: Hi, [snip] diff --git a/lib/ecdsa/ecdsa-verify.c b/lib/ecdsa/ecdsa-verify.c index d2e6a40f4a..d84f6eb093 100644 --- a/lib/ecdsa/ecdsa-verify.c +++ b/lib/ecdsa/ecdsa-verify.c @@ -1,13 +1,128 @@   // SPDX-License-Identifier: GPL-2.0+   /* + * ECDSA

Re: [PATCH 3/5] lib: ecdsa: Implement signature verification for crypto_algo API

2021-02-09 Thread Patrick DELAUNAY
Hi, On 1/11/21 4:41 PM, Alexandru Gagniuc wrote: Implement the crypto_algo .verify() function for ecdsa256. Because it backends on UCLASS_ECDSA, this change is focused on parsing the keys from devicetree and passing this information to the specific UCLASS driver. Signed-off-by: Alexandru

Re: [PATCH 3/5] lib: ecdsa: Implement signature verification for crypto_algo API

2021-01-13 Thread Simon Glass
On Mon, 11 Jan 2021 at 08:41, Alexandru Gagniuc wrote: > > Implement the crypto_algo .verify() function for ecdsa256. Because > it backends on UCLASS_ECDSA, this change is focused on parsing the > keys from devicetree and passing this information to the specific > UCLASS driver. > >

[PATCH 3/5] lib: ecdsa: Implement signature verification for crypto_algo API

2021-01-11 Thread Alexandru Gagniuc
Implement the crypto_algo .verify() function for ecdsa256. Because it backends on UCLASS_ECDSA, this change is focused on parsing the keys from devicetree and passing this information to the specific UCLASS driver. Signed-off-by: Alexandru Gagniuc --- lib/ecdsa/ecdsa-verify.c | 117