Re: [PATCH v4 08/29] hash: integrate hash on mbedtls

2024-07-22 Thread Raymond Mao
Hi Simon, On Sat, 20 Jul 2024 at 08:36, Simon Glass wrote: > Hi Tom, > > On Fri, 19 Jul 2024 at 16:25, Tom Rini wrote: > > > > On Fri, Jul 19, 2024 at 04:05:09PM +0100, Simon Glass wrote: > > > Hi Raymond, > > > > > > On Thu, 18 Jul 2024 at 17:46, Raymond Mao > wrote: > > > > > > > > Hi Simon,

Re: [PATCH v4 08/29] hash: integrate hash on mbedtls

2024-07-22 Thread Raymond Mao
Hi Tom, On Sat, 20 Jul 2024 at 13:13, Tom Rini wrote: > On Sat, Jul 20, 2024 at 01:36:02PM +0100, Simon Glass wrote: > > Hi Tom, > > > > On Fri, 19 Jul 2024 at 16:25, Tom Rini wrote: > > > > > > On Fri, Jul 19, 2024 at 04:05:09PM +0100, Simon Glass wrote: > > > > Hi Raymond, > > > > > > > > On

Re: [PATCH v4 08/29] hash: integrate hash on mbedtls

2024-07-21 Thread Simon Glass
Hi Tom, On Sat, 20 Jul 2024 at 18:13, Tom Rini wrote: > > On Sat, Jul 20, 2024 at 01:36:02PM +0100, Simon Glass wrote: > > Hi Tom, > > > > On Fri, 19 Jul 2024 at 16:25, Tom Rini wrote: > > > > > > On Fri, Jul 19, 2024 at 04:05:09PM +0100, Simon Glass wrote: > > > > Hi Raymond, > > > > > > > > On

Re: [PATCH v4 08/29] hash: integrate hash on mbedtls

2024-07-20 Thread Tom Rini
On Sat, Jul 20, 2024 at 01:36:02PM +0100, Simon Glass wrote: > Hi Tom, > > On Fri, 19 Jul 2024 at 16:25, Tom Rini wrote: > > > > On Fri, Jul 19, 2024 at 04:05:09PM +0100, Simon Glass wrote: > > > Hi Raymond, > > > > > > On Thu, 18 Jul 2024 at 17:46, Raymond Mao wrote: > > > > > > > > Hi Simon, >

Re: [PATCH v4 08/29] hash: integrate hash on mbedtls

2024-07-20 Thread Simon Glass
Hi Tom, On Fri, 19 Jul 2024 at 16:25, Tom Rini wrote: > > On Fri, Jul 19, 2024 at 04:05:09PM +0100, Simon Glass wrote: > > Hi Raymond, > > > > On Thu, 18 Jul 2024 at 17:46, Raymond Mao wrote: > > > > > > Hi Simon, > > > > > > On Fri, 5 Jul 2024 at 04:36, Simon Glass wrote: > > >> > > >> Hi, > >

Re: [PATCH v4 08/29] hash: integrate hash on mbedtls

2024-07-19 Thread Tom Rini
On Fri, Jul 19, 2024 at 04:05:09PM +0100, Simon Glass wrote: > Hi Raymond, > > On Thu, 18 Jul 2024 at 17:46, Raymond Mao wrote: > > > > Hi Simon, > > > > On Fri, 5 Jul 2024 at 04:36, Simon Glass wrote: > >> > >> Hi, > >> > >> On Wed, Jul 3, 2024, 09:56 Ilias Apalodimas > >> wrote: > >> > > >>

Re: [PATCH v4 08/29] hash: integrate hash on mbedtls

2024-07-19 Thread Simon Glass
Hi Raymond, On Thu, 18 Jul 2024 at 17:46, Raymond Mao wrote: > > Hi Simon, > > On Fri, 5 Jul 2024 at 04:36, Simon Glass wrote: >> >> Hi, >> >> On Wed, Jul 3, 2024, 09:56 Ilias Apalodimas >> wrote: >> > >> > Hi Raymond >> > >> > On Tue, 2 Jul 2024 at 21:27, Raymond Mao wrote: >> > > >> > > Int

Re: [PATCH v4 08/29] hash: integrate hash on mbedtls

2024-07-18 Thread Raymond Mao
Hi Ilias, On Wed, 3 Jul 2024 at 04:56, Ilias Apalodimas wrote: > Hi Raymond > > On Tue, 2 Jul 2024 at 21:27, Raymond Mao wrote: > > > > Integrate common/hash.c on the hash shim layer so that hash APIs > > from mbedtls can be leveraged by boot/image and efi_loader. > > > > Signed-off-by: Raymond

Re: [PATCH v4 08/29] hash: integrate hash on mbedtls

2024-07-18 Thread Raymond Mao
Hi Simon, On Fri, 5 Jul 2024 at 04:36, Simon Glass wrote: > Hi, > > On Wed, Jul 3, 2024, 09:56 Ilias Apalodimas > wrote: > > > > Hi Raymond > > > > On Tue, 2 Jul 2024 at 21:27, Raymond Mao wrote: > > > > > > Integrate common/hash.c on the hash shim layer so that hash APIs > > > from mbedtls ca

Re: [PATCH v4 08/29] hash: integrate hash on mbedtls

2024-07-05 Thread Simon Glass
Hi, On Wed, Jul 3, 2024, 09:56 Ilias Apalodimas wrote: > > Hi Raymond > > On Tue, 2 Jul 2024 at 21:27, Raymond Mao wrote: > > > > Integrate common/hash.c on the hash shim layer so that hash APIs > > from mbedtls can be leveraged by boot/image and efi_loader. > > > > Signed-off-by: Raymond Mao >

Re: [PATCH v4 08/29] hash: integrate hash on mbedtls

2024-07-03 Thread Ilias Apalodimas
Hi Raymond On Tue, 2 Jul 2024 at 21:27, Raymond Mao wrote: > > Integrate common/hash.c on the hash shim layer so that hash APIs > from mbedtls can be leveraged by boot/image and efi_loader. > > Signed-off-by: Raymond Mao > --- > Changes in v2 > - Use the original head files instead of creating n

[PATCH v4 08/29] hash: integrate hash on mbedtls

2024-07-02 Thread Raymond Mao
Integrate common/hash.c on the hash shim layer so that hash APIs from mbedtls can be leveraged by boot/image and efi_loader. Signed-off-by: Raymond Mao --- Changes in v2 - Use the original head files instead of creating new ones. Changes in v3 - Add handle checkers for malloc. Changes in v4 - Non