Re: [PATCH v8 1/4] util/uuid: add a hash function

2023-10-01 Thread Albert Esteve
On Sun, Oct 1, 2023 at 10:15 PM Michael S. Tsirkin wrote: > On Fri, Sep 08, 2023 at 05:47:40PM +0200, Albert Esteve wrote: > > Add hash function to uuid module using the > > djb2 hash algorithm. > > > > Add a couple simple unit tests for the hash > > function, checking collisions for similar UUID

Re: [PATCH v8 1/4] util/uuid: add a hash function

2023-10-01 Thread Michael S. Tsirkin
On Fri, Sep 08, 2023 at 05:47:40PM +0200, Albert Esteve wrote: > Add hash function to uuid module using the > djb2 hash algorithm. > > Add a couple simple unit tests for the hash > function, checking collisions for similar UUIDs. > > Reviewed-by: Philippe Mathieu-Daudé > Signed-off-by: Albert Es