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

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

private static Sum0 ( ulong x ) : ulong
x ulong
리턴 ulong
		private static ulong Sum0(ulong x)
		{
			return ((x << 36) | (x >> 28)) ^ ((x << 30) | (x >> 34)) ^ ((x << 25) | (x >> 39));
		}