aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/hash/crc64/crc64.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/hash/crc64/crc64.go')
-rw-r--r--libgo/go/hash/crc64/crc64.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/libgo/go/hash/crc64/crc64.go b/libgo/go/hash/crc64/crc64.go
index e5c1db4..5b64390 100644
--- a/libgo/go/hash/crc64/crc64.go
+++ b/libgo/go/hash/crc64/crc64.go
@@ -53,6 +53,8 @@ func New(tab *Table) hash.Hash64 { return &digest{0, tab} }
func (d *digest) Size() int { return Size }
+func (d *digest) BlockSize() int { return 1 }
+
func (d *digest) Reset() { d.crc = 0 }
func update(crc uint64, tab *Table, p []byte) uint64 {