1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-21 04:34:15 -04:00
v2fly/common/serial/hash.go
Darien Raymond 8cfe77383f
writeHash
2018-07-30 22:54:24 +02:00

13 lines
175 B
Go

package serial
import (
"hash"
)
func WriteHash(h hash.Hash) func(b []byte) (int, error) {
return func(b []byte) (int, error) {
h.Sum(b[:0])
return h.Size(), nil
}
}