Files
EdgeNode/internal/ttlcache/utils.go
2020-11-21 21:43:03 +08:00

8 lines
122 B
Go

package ttlcache
import "github.com/dchest/siphash"
func HashKey(key []byte) uint64 {
return siphash.Hash(0, 0, key)
}