Group: Cryptography Reference - Library: advapi32
CryptoAPI: Collection of Providers class
BOOL WINAPI CryptGetProvParam(
HCRYPTPROV hProv,
DWORD dwParam,
BYTE* pbData,
DWORD* pdwDataLen,
DWORD dwFlags
);
DECLARE INTEGER CryptGetProvParam IN advapi32;
INTEGER hProv,;
INTEGER dwParam,;
STRING @ pbData,;
INTEGER @ pdwDataLen,;
INTEGER dwFlags
hProv [in] Handle of the CSP target of the query. This handle must have been created using CryptAcquireContext.
dwParam [in] Predefined value specifying the nature of the query.
pbData [out] Pointer to a buffer to receive the data. The form of this data varies depending on the value of dwParam.
pdwDataLen [in, out] Pointer to a DWORD value specifying the size, in bytes, of the buffer pointed to by the pbData parameter.
dwFlags [in] Flag values.
If the function succeeds, the return value is nonzero (TRUE).