NBitcoin.BouncyCastle.Crypto.Digests.LongDigest.Sum0 C# (CSharp) Méthode

Sum0() private static méthode

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