mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-02 15:36:41 -05:00
writeHash
This commit is contained in:
parent
206f52affc
commit
8cfe77383f
12
common/serial/hash.go
Normal file
12
common/serial/hash.go
Normal file
@ -0,0 +1,12 @@
|
||||
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
|
||||
}
|
||||
}
|
@ -88,13 +88,11 @@ func (c *ClientSession) EncodeRequestHeader(header *protocol.RequestHeader, writ
|
||||
common.Must(buffer.AppendSupplier(buf.ReadFullFrom(rand.Reader, int32(padingLen))))
|
||||
}
|
||||
|
||||
{
|
||||
fnv1a := fnv.New32a()
|
||||
common.Must2(fnv1a.Write(buffer.Bytes()))
|
||||
|
||||
common.Must(buffer.AppendSupplier(func(b []byte) (int, error) {
|
||||
fnv1a.Sum(b[:0])
|
||||
return fnv1a.Size(), nil
|
||||
}))
|
||||
common.Must(buffer.AppendSupplier(serial.WriteHash(fnv1a)))
|
||||
}
|
||||
|
||||
timestampHash := md5.New()
|
||||
common.Must2(timestampHash.Write(hashTimestamp(timestamp)))
|
||||
|
Loading…
Reference in New Issue
Block a user