FILE / ScuroNeko/mtg

newantireplay/hasher.go

Исходный файл и его история в репозитории.
FILE 07985cf418c3b6d7e0b59de2d29e7e927bedf401
Files
mtg/newantireplay/hasher.go
T
2019-08-29 13:16:08 +03:00

10 lines
162 B
Go

package newantireplay
import "github.com/cespare/xxhash"
type hasher struct{}
func (h hasher) Sum64(value string) uint64 {
return xxhash.Sum64String(value)
}