1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-23 10:37:09 -05:00
v2fly/proxy/vmess/encoding/auth.go

12 lines
151 B
Go
Raw Normal View History

2016-07-23 07:17:51 -04:00
package encoding
2016-02-27 10:41:21 -05:00
import (
"hash/fnv"
)
func Authenticate(b []byte) uint32 {
fnv1hash := fnv.New32a()
fnv1hash.Write(b)
return fnv1hash.Sum32()
}