Friend Declare Function CryptHashData Lib "advapi32.dll"(ByVal hHash As IntPtr, ByVal pbData As Byte(), ByVal dwDataLen As Integer, ByVal dwFlags As Integer) As <MarshalAs(UnmanagedType.Bool)> Boolean
User-Defined Types:
None.
Notes:
None.
Tips & Tricks:
Please add some!
Sample Code:
Please add some!
Alternative Managed API:
Do you know one? Please contribute it!
The CryptHashData function adds data to a specified hash object. This function and CryptHashSessionKey can be called multiple times to compute the hash of long or discontinuous data streams. Before calling this function, CryptCreateHash must be called to create a handle of a hash object.
12/16/2013 3:14:15 AM - -24.0.218.62
TODO - a short description
9/30/2013 1:39:31 PM - anonymous
The CryptCreateHash function initiates the hashing of a stream of data. It creates and returns to the calling application a handle to a CSP hash object. This handle is used in subsequent calls to CryptHashData and CryptHashSessionKey to hash session keys and other streams of data.