FILE / ScuroNeko/mtg

antireplay/hasher.go

Исходный файл и его история в репозитории.
FILE f531d90fc4acfb47d4b4ca8dbe94c1231d628bda
Files
mtg/antireplay/hasher.go
T

10 lines
159 B
Go

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