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

Sigma1() private static method

private static Sigma1 ( ulong x ) : ulong
x ulong
return ulong
		private static ulong Sigma1(ulong x)
		{
			return ((x << 45) | (x >> 19)) ^ ((x << 3) | (x >> 61)) ^ (x >> 6);
		}