NBitcoin.BouncyCastle.Crypto.Digests.GeneralDigest.Finish C# (CSharp) Méthode

Finish() public méthode

public Finish ( ) : void
Résultat void
		public void Finish()
		{
			long bitLength = (byteCount << 3);

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

			while(xBufOff != 0)
				Update((byte)0);
			ProcessLength(bitLength);
			ProcessBlock();
		}