1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-17 10:44:26 -04:00
v2fly/common/serial/hash.go
2016-12-09 12:08:25 +01:00

15 lines
190 B
Go

package serial
import (
"hash"
"v2ray.com/core/common/buf"
)
func WriteHash(h hash.Hash) buf.Supplier {
return func(b []byte) (int, error) {
h.Sum(b[:0])
return h.Size(), nil
}
}