Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than advapi32, prefix the name with the module name and a period.
Declare Auto Function CryptCreateHash Lib "advapi32.dll" (ByVal hProv As IntPtr, _
ByVal algId As Integer, ByVal hKey As IntPtr, ByVal dwFlags As Integer, _
ByVal algId As Integer, ByVal hKey As IntPtr, ByVal provType As Integer, _
ByRef phHast As IntPtr) 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 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.
5/22/2015 8:49:17 AM - -80.66.20.18
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
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).