Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

CryptGetHashParam (advapi32)
 
.
Summary
TODO - a short description
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", SetLastError = true)]
static extern long CryptGetHashParamSize(IntPtr hHash, uint dwParam, byte[] pbData, uint dwDataLen, uint dwFlags);

VB Signature:

Declare Function cryptgethashparamsize Lib "advapi32.dll" (TODO) As TODO

User-Defined Types:

None.

enum HashParameters
{
    HP_ALGID = 0x0001,   // Hash algorithm
    HP_HASHVAL = 0x0002, // Hash value
    HP_HASHSIZE = 0x0004 // Hash value size
}

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

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

VB Signature:

Private Declare Function CryptGetHashParam Lib "advapi32.dll" (ByVal hHash As Integer, ByVal dwParam As Integer, <MarshalAsAttribute(UnmanagedType.AsAny)> <[In], Out> phdata As Byte, ByRef pdwDataLen As Integer, ByVal dwFlags As Integer) As Integer

TODO

User-Defined Types:

None.

Tips & Tricks:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Sample Code:

Please add some!

Notes:

None.

Documentation

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation

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).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions