NBitcoin.BouncyCastle.Crypto.Digests.LongDigest.AdjustByteCounts C# (CSharp) Method

AdjustByteCounts() private method

private AdjustByteCounts ( ) : void
return void
		private void AdjustByteCounts()
		{
			if(byteCount1 > 0x1fffffffffffffffL)
			{
				byteCount2 += (long)((ulong)byteCount1 >> 61);
				byteCount1 &= 0x1fffffffffffffffL;
			}
		}