murmurhash3_x64_128

fun murmurhash3_x64_128(data: ByteArray, offset: Int, length: Int, seed: Int): LongArray

Generates 128-bit hash from the byte array with the given offset, length and seed.

The code is adopted from Apache Commons (link)

Return

The 128-bit hash (2 longs)

Parameters

data

The input byte array

offset

The first element of array

length

The length of array

seed

The initial seed value


Generates 128-bit hash from the byte array with the given offset, length and seed.

The code is adopted from Apache Commons (link)

Return

The 128-bit hash (2 longs)

Parameters

data

The input data