v2ray-core/common/serial/hash.go

13 lines
175 B
Go
Raw Normal View History

2018-07-30 20:54:24 +00:00
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
}
}