CryptSignMessageWithKey function (wincrypt.h)
The CryptSignMessageWithKey function signs a message by using a CSP's private key specified in the parameters. A placeholder SignerId is created and stored in the message.
Syntax
BOOL CryptSignMessageWithKey(
[in] PCRYPT_KEY_SIGN_MESSAGE_PARA pSignPara,
[in] const BYTE *pbToBeSigned,
[in] DWORD cbToBeSigned,
[out] BYTE *pbSignedBlob,
[in, out] DWORD *pcbSignedBlob
);
Parameters
[in] pSignPara
A pointer to a CRYPT_KEY_SIGN_MESSAGE_PARA structure that contains the signature parameters.
[in] pbToBeSigned
A pointer to a buffer array that contains the message to be signed.
[in] cbToBeSigned
The number of array elements in the pbToBeSigned buffer array.
[out] pbSignedBlob
A pointer to a buffer to receive the encoded signed message.
This parameter can be NULL to set the size of this information for memory allocation purposes. For more information, see Retrieving Data of Unknown Length.
[in, out] pcbSignedBlob
A pointer to a DWORD value that indicates the size, in bytes, of the pbSignedBlob buffer. When the function returns, this variable contains the size, in bytes, of the signed and encoded message.
Return value
If the function succeeds, the return value is nonzero (TRUE).
If the function fails, the return value is zero (FALSE).
For extended error information, call GetLastError.
The following lists the error codes most commonly returned by the GetLastError function.
Return code | Description |
---|---|
|
If the buffer specified by the pbSignedBlob parameter is not large enough to hold the returned data, the function sets the ERROR_MORE_DATA code and stores the required buffer size, in bytes, into the variable pointed to by pcbSignedBlob. |
|
The message encoding type is not valid. Currently only PKCS_7_ASN_ENCODING is supported. The cbSize in *pSignPara is not valid. |
|
The pSigningCert in *pSignPara does not have a CERT_KEY_PROV_INFO_PROP_ID or CERT_KEY_CONTEXT_PROP_ID property. |
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows XP [desktop apps only] |
Minimum supported server | Windows Server 2003 [desktop apps only] |
Target Platform | Windows |
Header | wincrypt.h |
Library | Crypt32.lib |
DLL | Crypt32.dll |