Re: [PATCH v5 05/16] crypto/hash-nettle: Implement new hash API

2024-10-10 Thread Cédric Le Goater
On 10/10/24 13:43, Daniel P. Berrangé wrote: On Thu, Oct 10, 2024 at 11:49:22AM +0100, Daniel P. Berrangé wrote: On Tue, Oct 08, 2024 at 09:57:12AM +0200, Cédric Le Goater wrote: From: Alejandro Zeise Implements the new hashing API in the nettle hash driver. Supports creating/destroying a con

Re: [PATCH v5 05/16] crypto/hash-nettle: Implement new hash API

2024-10-10 Thread Daniel P . Berrangé
On Thu, Oct 10, 2024 at 11:49:22AM +0100, Daniel P. Berrangé wrote: > On Tue, Oct 08, 2024 at 09:57:12AM +0200, Cédric Le Goater wrote: > > From: Alejandro Zeise > > > > Implements the new hashing API in the nettle hash driver. > > Supports creating/destroying a context, updating the context > >

Re: [PATCH v5 05/16] crypto/hash-nettle: Implement new hash API

2024-10-10 Thread Daniel P . Berrangé
On Tue, Oct 08, 2024 at 09:57:12AM +0200, Cédric Le Goater wrote: > From: Alejandro Zeise > > Implements the new hashing API in the nettle hash driver. > Supports creating/destroying a context, updating the context > with input data and obtaining an output hash. > > Signed-off-by: Alejandro Zeis

[PATCH v5 05/16] crypto/hash-nettle: Implement new hash API

2024-10-08 Thread Cédric Le Goater
From: Alejandro Zeise Implements the new hashing API in the nettle hash driver. Supports creating/destroying a context, updating the context with input data and obtaining an output hash. Signed-off-by: Alejandro Zeise [ clg: - Dropped qcrypto_hash_supports() in qcrypto_nettle_hash_new() ] Signe