Re: [PATCH v4 01/15] crypto: accumulative hashing API

2024-08-08 Thread Markus Armbruster
Daniel P. Berrangé writes: > On Wed, Aug 07, 2024 at 07:51:08PM +, 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_

Re: [PATCH v4 01/15] crypto: accumulative hashing API

2024-08-08 Thread Daniel P . Berrangé
On Wed, Aug 07, 2024 at 07:51:08PM +, 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 v4 01/15] crypto: accumulative hashing API

2024-08-07 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