mirror of https://github.com/v2ray/v2ray-core
12 lines
151 B
Go
12 lines
151 B
Go
|
package encoding
|
||
|
|
||
|
import (
|
||
|
"hash/fnv"
|
||
|
)
|
||
|
|
||
|
func Authenticate(b []byte) uint32 {
|
||
|
fnv1hash := fnv.New32a()
|
||
|
fnv1hash.Write(b)
|
||
|
return fnv1hash.Sum32()
|
||
|
}
|