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