v2ray-core/common/serial/hash.go

11 lines
168 B
Go
Raw Normal View History

2016-12-06 10:03:42 +00:00
package serial
2016-12-09 12:17:34 +00:00
import "hash"
2016-12-09 10:35:27 +00:00
2016-12-09 12:17:34 +00:00
func WriteHash(h hash.Hash) func([]byte) (int, error) {
2016-12-09 11:08:25 +00:00
return func(b []byte) (int, error) {
2016-12-06 10:03:42 +00:00
h.Sum(b[:0])
2016-12-09 11:08:25 +00:00
return h.Size(), nil
2016-12-06 10:03:42 +00:00
}
}