NBitcoin.BouncyCastle.Crypto.Digests.LongDigest.Sum0 C# (CSharp) Method

Sum0() private static method

private static Sum0 ( ulong x ) : ulong
x ulong
return ulong
		private static ulong Sum0(ulong x)
		{
			return ((x << 36) | (x >> 28)) ^ ((x << 30) | (x >> 34)) ^ ((x << 25) | (x >> 39));
		}