Re: [PATCH v2 2/5] lib: sha256: add feature sha256_hmac

2024-12-06 Thread Raymond Mao
Hi Philippe, On Fri, 6 Dec 2024 at 08:11, Philippe REYNES wrote: > Hi Raymond, > Le 05/12/2024 à 18:11, Raymond Mao a écrit : > > > > *This Mail comes from Outside of SoftAtHome: *Do not answer, click links > or open attachments unless you recognize the sender and know the content is > safe. > H

Re: [PATCH v2 2/5] lib: sha256: add feature sha256_hmac

2024-12-06 Thread Philippe REYNES
Hi Raymond, Le 05/12/2024 à 18:11, Raymond Mao a écrit : *This Mail comes from Outside of SoftAtHome: *Do not answer, click links or open attachments unless you recognize the sender and know the content is safe.** Hi Philippe, On Wed, 4 Dec 2024 at 12:54, Philippe Reynes wrote: Add

Re: [PATCH v2 2/5] lib: sha256: add feature sha256_hmac

2024-12-05 Thread Raymond Mao
Hi Philippe, On Wed, 4 Dec 2024 at 12:54, Philippe Reynes wrote: > Adds the support of the hmac based on sha256. > This implementation is based on rfc2104. > > Signed-off-by: Philippe Reynes > --- > include/u-boot/sha256.h | 4 > lib/mbedtls/sha256.c| 38 +

[PATCH v2 2/5] lib: sha256: add feature sha256_hmac

2024-12-04 Thread Philippe Reynes
Adds the support of the hmac based on sha256. This implementation is based on rfc2104. Signed-off-by: Philippe Reynes --- include/u-boot/sha256.h | 4 lib/mbedtls/sha256.c| 38 ++ 2 files changed, 42 insertions(+) diff --git a/include/u-boot/sha256.