MurmurHash.hash

Computes the MurmurHash digest of the given data.

class MurmurHash
static pure
ubyte[]
hash
(
ubyte[] data
,
uint seed = 0
)

Parameters

data ubyte[]

The input byte array for which the hash is to be computed.

seed uint

An optional seed value used to initialize the hash function. Defaults to 0.

Return Value

Type: ubyte[]

An array of bytes representing the computed MurmurHash digest.

Meta