Re: [PATCH v4 07/29] mbedtls: add digest shim layer for MbedTLS

2024-07-26 Thread Raymond Mao
Hi Ilias, On Fri, 26 Jul 2024 at 06:19, Ilias Apalodimas wrote: > Hi Raymond > > [...] > > > > > +if MBEDTLS_LIB_CRYPTO > > + > > +config SHA1_MBEDTLS > > + bool "Enable SHA1 support with MbedTLS crypto library" > > + depends on MBEDTLS_LIB_CRYPTO && SHA1 > > + help > > +

Re: [PATCH v4 07/29] mbedtls: add digest shim layer for MbedTLS

2024-07-26 Thread Tom Rini
On Fri, Jul 26, 2024 at 01:18:57PM +0300, Ilias Apalodimas wrote: > Hi Raymond > > [...] > > > > > +if MBEDTLS_LIB_CRYPTO > > + > > +config SHA1_MBEDTLS > > + bool "Enable SHA1 support with MbedTLS crypto library" > > + depends on MBEDTLS_LIB_CRYPTO && SHA1 > > + help > > +

Re: [PATCH v4 07/29] mbedtls: add digest shim layer for MbedTLS

2024-07-26 Thread Ilias Apalodimas
Hi Raymond [...] > > +if MBEDTLS_LIB_CRYPTO > + > +config SHA1_MBEDTLS > + bool "Enable SHA1 support with MbedTLS crypto library" > + depends on MBEDTLS_LIB_CRYPTO && SHA1 > + help > + This option enables support of hashing using SHA1 algorithm > + with MbedTLS c

[PATCH v4 07/29] mbedtls: add digest shim layer for MbedTLS

2024-07-02 Thread Raymond Mao
Implement digest shim layer on top of MbedTLS crypto library. Introduce _MBEDTLS kconfig for MbedTLS crypto implementations. 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 - Ref