CryptEncryptMessage

The CryptEncryptMessage function encrypts and encodes a message.

#include <wincrypt.h>
BOOL WINAPI CryptEncryptMessage(
  PCRYPT_ENCRYPT_MESSAGE_PARA pEncryptPara, // in
  DWORD cRecipientCert,                     // in
  PCCERT_CONTEXT rgpRecipientCert[ ],       // in
  const BYTE *pbToBeEncrypted,              // in
  DWORD cbToBeEncrypted,                    // in
  BYTE *pbEncryptedBlob,                    // out
  DWORD *pcbEncryptedBlob                   // in/out
);
 

Parameters

pEncryptPara
Pointer to the encryption parameters. For details, see Simplified Message Data Structures.
cRecipientCert
Number of elements in the rgpRecipientCert[] array.
rgpRecipientCert[]
Array of pointers to certificate contexts for the intended recipients of the message.
pbToBeEncrypted
Pointer to an application's content (message) that is to be encrypted.
cbToBeEncrypted
Size, in bytes, of the message that is to be encrypted.
pbEncryptedBlob
Pointer to a buffer that receives the encrypted and encoded message.

This parameter can be NULL to set the size of this information for memory allocation purposes. For more information, see Common In/Out Parameter Conventions.

pcbEncryptedBlob
Pointer to a variable that specifies the size, in bytes, of the buffer pointed to by the pbEncryptedBlob parameter. When the function returns, this variable contains the size, in bytes, of the encrypted and encoded message copied to *pbEncryptedBlob.

Note that when processing the data returned in the buffer, applications need to use the actual size of the data returned. The actual size may be slightly smaller than the size of the buffer specified on input. (On input, buffer sizes are usually specified large enough to insure that the largest possible output data will fit in the buffer.) On output, the variable pointed to by this parameter is updated to reflect the actual size of the data copied to the buffer.

Return Values

TRUE if the function succeeded. FALSE if the function failed.

Call GetLastError to see the reason for any failures. Note that errors from the called functions CryptGenKey, CryptEncrypt, CryptImportKey, and CryptExportKey may be propagated to this function. This function has the following error codes.

Error code Description
ERROR_MORE_DATA If the buffer specified by the pbEncryptedBlob 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 pcbEncryptedBlob.
E_INVALIDARG Invalid message encoding type. Currently only PKCS_7_ASN_ENCODING is supported. Invalid cbSize in *pEncryptPara.
CRYPT_E_OSS_ERROR Message ASN.1 decoding error. Note, to get the OSS error subtract CRYPT_E_OSS_ERROR from the returned error and see asn1code.h for details on the error.

Example

See Example Code Using CryptEncryptMessage.

QuickInfo

  Windows NT: Requires version 4.0 SP3 or later. Available also in IE 3.02 and later.
  Windows: Requires Windows 98 (or Windows 95 with IE 3.02 or later).
  Windows CE: Unsupported.
  Header: Declared in wincrypt.h.
  Import Library: Use crypt32.lib.