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

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

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