 |
CryptGetHashParam ..msdn Add comment W32 Constants Translate this page |
 |
 |
Retrieves data that governs the operations of a hash object. The actual hash value can be retrieved by using this function.
|
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
BOOL WINAPI CryptGetHashParam(
HCRYPTHASH hHash,
DWORD dwParam,
BYTE* pbData,
DWORD* pdwDataLen,
DWORD dwFlags
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER CryptGetHashParam IN advapi32;
INTEGER hHash,;
LONG dwParam,;
STRING @ pbData,;
LONG @ pdwDataLen,;
LONG dwFlags
|
 |
 |
 |
| Parameters: |
 |
hHash
[in] Handle of the hash object to be queried.
dwParam
[in] Query type.
pbData
[out] Pointer to a buffer that receives the specified value data.
pdwDataLen
[in, out] Pointer to a DWORD value specifying the size, in bytes, of the pbData buffer.
dwFlags
[in] Reserved for future use and must be zero. |
 |
 |
| Return value: |
 |
| If the function succeeds, the return value is TRUE. |
 |
 |
| My comment: |
 |
| Parameter pbData can be NULL to determine the memory size required. |
 |
 |
| Word Index links for the CryptGetHashParam : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2005-03-07 15:35:48 | | Modified: | 2005-03-07 15:38:09 | Visited in last 7 days: 22 |