Files
AynaLivePlayer/pkg/util/hash.go
aynakeya fd872c1f5b update
2024-04-13 00:59:44 -07:00

10 lines
122 B
Go

package util
import "hash/fnv"
func Hash64(s string) uint64 {
h := fnv.New64()
h.Write([]byte(s))
return h.Sum64()
}