set correct block size

This commit is contained in:
lukechampine 2020-01-09 15:39:50 -05:00
parent bd08550d6e
commit 062bad69bc
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ func (h *Hasher) Reset() {
}
// BlockSize implements hash.Hash.
func (h *Hasher) BlockSize() int { return 1024 }
func (h *Hasher) BlockSize() int { return 64 }
// Size implements hash.Hash.
func (h *Hasher) Size() int { return h.out_size }