System.Security.Cryptography.SHA1CryptoServiceProvider.HashCore C# (CSharp) Method

HashCore() protected method

protected HashCore ( byte array, int ibStart, int cbSize ) : void
array byte
ibStart int
cbSize int
return void
        protected override void HashCore(byte[] array, int ibStart, int cbSize)
        {
            _incrementalHash.AppendData(array, ibStart, cbSize);
        }