Re: [PATCH v4 5/8] lib: sha256: add feature sha256_hmac

2024-12-16 Thread Philippe REYNES
Hi Raymond, Le 16/12/2024 à 16:01, Raymond Mao a écrit : Hi Philippe, On Mon, 16 Dec 2024 at 07:48, Philippe REYNES wrote: Hi Raymond, Le 13/12/2024 à 17:49, Raymond Mao a écrit : *This Mail comes from Outside of SoftAtHome: *Do not answer, click links or open attachme

Re: [PATCH v4 5/8] lib: sha256: add feature sha256_hmac

2024-12-16 Thread Raymond Mao
Hi Philippe, On Mon, 16 Dec 2024 at 07:48, Philippe REYNES < philippe.rey...@softathome.com> wrote: > Hi Raymond, > > > Le 13/12/2024 à 17:49, Raymond Mao a écrit : > > > > *This Mail comes from Outside of SoftAtHome: *Do not answer, click links > or open attachments unless you recognize the send

Re: [PATCH v4 5/8] lib: sha256: add feature sha256_hmac

2024-12-16 Thread Philippe REYNES
Hi Raymond, Le 13/12/2024 à 17:49, 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 Thu, 12 Dec 2024 at 08:37, Philippe Reynes wrote: A

Re: [PATCH v4 5/8] lib: sha256: add feature sha256_hmac

2024-12-13 Thread Raymond Mao
Hi Philippe, On Thu, 12 Dec 2024 at 08:37, Philippe Reynes < philippe.rey...@softathome.com> 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/sha256_common.c

[PATCH v4 5/8] lib: sha256: add feature sha256_hmac

2024-12-12 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/sha256_common.c | 48 + 2 files changed, 52 insertions(+) diff --git a/include/u-boot/sha2