Re: [PATCH v3 06/25] mbedtls: add digest shim layer for MbedTLS

2024-05-31 Thread Ilias Apalodimas
On Tue, May 28, 2024 at 07:09:17AM -0700, Raymond Mao wrote: > Implement digest shim layer on top of MbedTLS crypto library. > > Signed-off-by: Raymond Mao > --- > Changes in v2 > - Split the shim layer into separated files and use the original head > files instead of creating new ones. >

[PATCH v3 06/25] mbedtls: add digest shim layer for MbedTLS

2024-05-28 Thread Raymond Mao
Implement digest shim layer on top of MbedTLS crypto library. Signed-off-by: Raymond Mao --- Changes in v2 - Split the shim layer into separated files and use the original head files instead of creating new ones. Changes in v3 - Refactored sha1_hmac and removed non-watchdog md5 function.