Versions in this module Expand all Collapse all v1 v1.0.1 Sep 20, 2025 Changes in this version + type Digest128 struct + func New128() *Digest128 + func New128WithSeed(seed uint64) *Digest128 + func (d *Digest128) Reset() + func (d *Digest128) Sum(b []byte) []byte + func (d *Digest128) Sum128() Uint128 + func (d *Digest128) Write(p []byte) (int, error) v1.0.0 Sep 14, 2025 Changes in this version + func Sum32(b []byte) uint32 + func Sum64(b []byte) uint64 + type Digest32 struct + func New32() *Digest32 + func New32WithSeed(seed uint32) *Digest32 + func (d *Digest32) BlockSize() int + func (d *Digest32) MarshalBinary() ([]byte, error) + func (d *Digest32) Reset() + func (d *Digest32) ResetWithSeed(seed uint32) + func (d *Digest32) Size() int + func (d *Digest32) Sum(b []byte) []byte + func (d *Digest32) Sum32() uint32 + func (d *Digest32) UnmarshalBinary(b []byte) error + func (d *Digest32) Write(b []byte) (n int, err error) + type Digest64 struct + func New64() *Digest64 + func NewWithSeed64(seed uint64) *Digest64 + func (d *Digest64) BlockSize() int + func (d *Digest64) MarshalBinary() ([]byte, error) + func (d *Digest64) Reset() + func (d *Digest64) ResetWithSeed(seed uint64) + func (d *Digest64) Size() int + func (d *Digest64) Sum(b []byte) []byte + func (d *Digest64) Sum64() uint64 + func (d *Digest64) UnmarshalBinary(b []byte) error + func (d *Digest64) Write(b []byte) (n int, err error) + type Uint128 struct + Hi uint64 + Lo uint64 + func Sum128(b []byte) Uint128 + func Sum128String(s string) Uint128 + func Sum128StringWithSeed(s string, seed uint64) Uint128 + func Sum128WithSeed(b []byte, seed uint64) Uint128