CryptGetHashParam (advapi32)
Last changed: waynegaidin@hotmail.com-172.8.63.57

.
Summary
The CryptGetHashParam function retrieves data that governs the operations of a hash object. The actual hash value can be retrieved by using this function.

C# Signature:

[DllImport("advapi32.dll", CharSet = CharSet.Auto, SetLastError = true)]
static extern bool CryptGetHashParam(IntPtr hHash,
                                     uint dwParam,
                                     [Out] byte[] pbData,
                                     [In, Out] uint pdwDataLen,
                                     uint dwFlags);

VB Signature:

TODO

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation