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

Sum1() private static method

private static Sum1 ( ulong x ) : ulong
x ulong
return ulong
		private static ulong Sum1(ulong x)
		{
			return ((x << 50) | (x >> 14)) ^ ((x << 46) | (x >> 18)) ^ ((x << 23) | (x >> 41));
		}