Skip to content

Releases: goncalossilva/kotlinx-murmurhash

v0.4.0

23 Jan 01:22
6ceffd1
Compare
Choose a tag to compare
Fix handling of negative bytes in input

Negative bytes were converted to UIntas is, without consideration for
their sign (UInt is higher precision and can fit both). Converting to
UByte first ensures sign is handled (i.e., masked with 0xff).

This commit also increases test coverage of edge cases, by testing with
all bytes in random order, similar to Apache's Commons Codec test suite.

Closes #3

v0.3.0

11 Dec 04:03
c3f1f6f
Compare
Choose a tag to compare
Add MurmurHash3's 128-bit x86 version

v0.2.0

11 Dec 03:50
807807b
Compare
Choose a tag to compare

v0.1.0

11 Dec 03:50
1147ded
Compare
Choose a tag to compare