### Buzhash Quick Start Example Source: https://github.com/satmihir/buzhash/blob/main/README.md Demonstrates basic usage of buzhash for hashing a single buffer, creating a rolling hasher, and performing rolling operations. ```go import "github.com/satmihir/buzhash" // Hash a single buffer hash := buzhash.Hash([]byte("foobar")) // Create a rolling hasher h, err := buzhash.New([]byte("hello world"), 4) if err != nil { log.Fatal(err) } // Roll forward by 1 byte next, _ := h.Roll(1) // Get multiple window hashes with stride 1 hashes, _ := h.BulkRoll(1) ``` -------------------------------- ### Install buzhash Go Package Source: https://github.com/satmihir/buzhash/blob/main/README.md Use this command to add the buzhash library to your Go project. ```bash go get github.com/satmihir/buzhash ```