mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 09:17:55 -04:00
12 lines
146 B
Go
12 lines
146 B
Go
package raw
|
|
|
|
import (
|
|
"hash/fnv"
|
|
)
|
|
|
|
func Authenticate(b []byte) uint32 {
|
|
fnv1hash := fnv.New32a()
|
|
fnv1hash.Write(b)
|
|
return fnv1hash.Sum32()
|
|
}
|