Re: [PATCH v3 4/5] lib: mbedtls: sha256: add support of key derivation

2024-12-11 Thread Philippe REYNES
Hi Raymond, Le 09/12/2024 à 17:28, 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 Mon, 9 Dec 2024 at 04:42, Philippe Reynes wrote: Ad

Re: [PATCH v3 4/5] lib: mbedtls: sha256: add support of key derivation

2024-12-09 Thread Raymond Mao
Hi Philippe, On Mon, 9 Dec 2024 at 04:42, Philippe Reynes wrote: > Adds the support of key derivation using the scheme hkdf. > This scheme is defined in rfc5869. > > Signed-off-by: Philippe Reynes > --- > include/u-boot/sha256.h | 7 +++ > lib/mbedtls/sha256.c| 22

[PATCH v3 4/5] lib: mbedtls: sha256: add support of key derivation

2024-12-09 Thread Philippe Reynes
Adds the support of key derivation using the scheme hkdf. This scheme is defined in rfc5869. Signed-off-by: Philippe Reynes --- include/u-boot/sha256.h | 7 +++ lib/mbedtls/sha256.c| 22 ++ 2 files changed, 29 insertions(+) diff --git a/include/u-boot/sha256.h b/inc