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

Sigma0() private static method

private static Sigma0 ( ulong x ) : ulong
x ulong
return ulong
		private static ulong Sigma0(ulong x)
		{
			return ((x << 63) | (x >> 1)) ^ ((x << 56) | (x >> 8)) ^ (x >> 7);
		}