Re: [PATCH 5/5] test: dm: Add test for ECDSA UCLASS support

2021-08-16 Thread Patrice CHOTARD
Hi Alexandru On 7/30/21 11:53 AM, Patrick DELAUNAY wrote: > Hi, > > On 7/29/21 6:47 PM, Alexandru Gagniuc wrote: >> This test verifies that ECDSA_UCLASS is implemented, and that >> ecdsa_verify() works as expected. The definition of "expected" is >> "does not find a device, and returns -ENODEV".

Re: [PATCH 5/5] test: dm: Add test for ECDSA UCLASS support

2021-07-30 Thread Patrick DELAUNAY
Hi, On 7/29/21 6:47 PM, Alexandru Gagniuc wrote: This test verifies that ECDSA_UCLASS is implemented, and that ecdsa_verify() works as expected. The definition of "expected" is "does not find a device, and returns -ENODEV". The lack of a hardware-independent ECDSA implementation prevents us

[PATCH 5/5] test: dm: Add test for ECDSA UCLASS support

2021-07-29 Thread Alexandru Gagniuc
This test verifies that ECDSA_UCLASS is implemented, and that ecdsa_verify() works as expected. The definition of "expected" is "does not find a device, and returns -ENODEV". The lack of a hardware-independent ECDSA implementation prevents us from having one in the sandbox, for now.