checksum/hash/def.go

12 lines
113 B
Go

package hash
import "fmt"
type (
Func interface {
fmt.Stringer
Append(data []byte)
Finish() []byte
}
)