FILE / ScuroNeko/mtg

_antireplay/hasher.go

Исходный файл и его история в репозитории.
FILE 7827d1255a18a4196d54a7777a03c950117e210a
Files
mtg/_antireplay/hasher.go
T
2019-09-04 10:19:01 +03:00

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)
}