aboutsummaryrefslogtreecommitdiff
path: root/internal/hash/hash.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/hash/hash.go')
-rw-r--r--internal/hash/hash.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/internal/hash/hash.go b/internal/hash/hash.go
index 4a718be..8662817 100644
--- a/internal/hash/hash.go
+++ b/internal/hash/hash.go
@@ -9,10 +9,14 @@ const (
type Hash struct {
file *os.File
+ hash func([]byte) uint32
}
func New(file *os.File) *Hash {
- return &Hash{file: file}
+ return &Hash{
+ file: file,
+ hash: defaultHash,
+ }
}
func (h *Hash) Close() error {