HashAlgorithm::HashCore Method (array<Byte>^, Int32, Int32)
.NET Framework (current version)
When overridden in a derived class, routes data written to the object into the hash algorithm for computing the hash.
Assembly: mscorlib (in mscorlib.dll)
protected: virtual void HashCore( array<unsigned char>^ array, int ibStart, int cbSize ) abstract
Parameters
- array
-
Type:
array<System::Byte>^
The input to compute the hash code for.
- ibStart
-
Type:
System::Int32
The offset into the byte array from which to begin using data.
- cbSize
-
Type:
System::Int32
The number of bytes in the byte array to use as data.
This method is not called by application code.
This abstract method performs the hash computation. Every write to the cryptographic stream object passes the data through this method. For each block of data, this method updates the state of the hash object so a correct hash value is returned at the end of the data stream.
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: