12 lines
151 B
Go
Raw Normal View History

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