mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-06 18:32:50 +08:00
10 lines
122 B
Go
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()
|
|
}
|