System.Security.Cryptography.MD5Managed.MD5Managed.HashFinal C# (CSharp) Method

HashFinal() protected method

protected HashFinal ( ) : byte[]
return byte[]
        protected override byte[] HashFinal()
        {
            base.HashValue = MD5.GetHashFinalBlock(_data, 0, _dataSize, _abcd, _totalLength * 8);
            return base.HashValue;
        }
    }