NBitcoin.BouncyCastle.Crypto.Digests.LongDigest.Sigma1 C# (CSharp) 메소드

Sigma1() 개인적인 정적인 메소드

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