mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 18:17:52 -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
|
||
|
}
|
||
|
}
|