1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-04 13:05:24 +00:00
v2fly/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
}
}