FILE / ScuroNeko/mtg

antireplay/hasher.go

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