fnv1_64 function

int fnv1_64(
  1. List<int> bytes, {
  2. int init = FNV1_64_INIT,
})

FNV-1 64bit hash algorithm

Implementation

int fnv1_64(List<int> bytes, {int init = FNV1_64_INIT}) {
  return _fnv(bytes, init, FNV_64_PRIME, UINT64_MASK);
}