mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 15:00:26 +08:00
8 lines
119 B
Go
8 lines
119 B
Go
package cache
|
|
|
|
import "github.com/dchest/siphash"
|
|
|
|
func HashKey(key []byte) uint64 {
|
|
return siphash.Hash(0, 0, key)
|
|
}
|