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

Finish() 공개 메소드

public Finish ( ) : void
리턴 void
		public void Finish()
		{
			AdjustByteCounts();

			long lowBitLength = byteCount1 << 3;
			long hiBitLength = byteCount2;

			//
			// add the pad bytes.
			//
			Update((byte)128);

			while(xBufOff != 0)
			{
				Update((byte)0);
			}

			ProcessLength(lowBitLength, hiBitLength);

			ProcessBlock();
		}