mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-18 02:16:10 -05:00
13 lines
175 B
Go
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
|
|
}
|
|
}
|