checksum/hash/def.go

12 lines
113 B
Go
Raw Permalink Normal View History

2023-08-01 16:27:27 +08:00
package hash
2023-08-01 15:32:05 +08:00
import "fmt"
type (
Func interface {
fmt.Stringer
Append(data []byte)
Finish() []byte
}
)