9
weed/util/randomizer.go
Normal file
9
weed/util/randomizer.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package util
|
||||
|
||||
import "hash/fnv"
|
||||
|
||||
func HashBytesToInt64(x []byte) int64 {
|
||||
hash := fnv.New64()
|
||||
hash.Write(x)
|
||||
return int64(hash.Sum64())
|
||||
}
|
||||
Reference in New Issue
Block a user