consensus/utils/xorshift64star.go

9 lines
129 B
Go
Raw Normal View History

2023-03-07 17:57:06 +00:00
package utils
func XorShift64Star(x uint64) uint64 {
x ^= x >> 12
x ^= x << 25
x ^= x >> 27
return x * 0x2545F4914F6CDD1D
}