Re: [PATCH v3 01/12] crypto: accumulative hashing API

2024-08-06 Thread Daniel P . Berrangé
On Mon, Aug 05, 2024 at 03:50:36PM +, Alejandro Zeise wrote: > Changes the hash API to support accumulative hashing. > Hash objects are created with "qcrypto_hash_new", > updated with data with "qcrypto_hash_update", and > the hash obtained with "qcrypto_hash_finalize". > > These changes bring

[PATCH v3 01/12] crypto: accumulative hashing API

2024-08-05 Thread Alejandro Zeise
Changes the hash API to support accumulative hashing. Hash objects are created with "qcrypto_hash_new", updated with data with "qcrypto_hash_update", and the hash obtained with "qcrypto_hash_finalize". These changes bring the hashing API more in line with the hmac API. Signed-off-by: Alejandro Ze