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

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

private static Sum1 ( ulong x ) : ulong
x ulong
리턴 ulong
		private static ulong Sum1(ulong x)
		{
			return ((x << 50) | (x >> 14)) ^ ((x << 46) | (x >> 18)) ^ ((x << 23) | (x >> 41));
		}