FILE / ScuroNeko/mtg

_antireplay/hasher.go

Исходный файл и его история в репозитории.
FILE 3ae69183aa823a65f32e6e0dc7640caa4bb1662d
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)
}