TLSharp.Core.MTProto.Crypto.GeneralDigest.Finish C# (CSharp) Method

Finish() public method

public Finish ( ) : void
return void
        public void Finish()
        {
            long bitLength = (byteCount << 3);

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

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