Files
EdgeNode/internal/ttlcache/utils.go

8 lines
122 B
Go
Raw Normal View History

2020-11-21 21:43:03 +08:00
package ttlcache
import "github.com/dchest/siphash"
func HashKey(key []byte) uint64 {
return siphash.Hash(0, 0, key)
}