CertSerializeCertificateStoreElement (Compact 2013)

3/28/2014

This function serializes a certificate context's encoded certificate and its encoded properties. The result can be persisted to storage so that the certificate and properties can be retrieved at a later time.

Syntax

BOOL WINAPI CertSerializeCertificateStoreElement(
  PCCERT_CONTEXT pCertContext,
  DWORD dwFlags,
  BYTE* pbElement,
  DWORD* pcbElement
);

Parameters

  • pCertContext
    [in] Pointer to the CERT_CONTEXT structure to be serialized.
  • dwFlags
    [in] Reserved; set to 0 (zero).
  • pbElement
    [out] Pointer to a buffer that receives the serialized output, including the encoded certificate and possibly its properties.

    This parameter can be NULL to set the size of this information for memory allocation purposes.

  • pcbElement
    [in, out] On input, pointer to a DWORD value specifying the size, in bytes, of the buffer pointed to by pbElementr. On output, the DWORD value contains the number of bytes stored in the buffer.

    When processing the data returned in the buffer, applications must use the actual size of the data returned. The actual size can be slightly smaller than the size of the buffer specified on input. On input, buffer sizes are usually specified large enough to ensure that the largest possible output data fits 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 Value

If the function succeeds, the return value is TRUE.

If the function fails, the return value is FALSE.

For extended error information, call the GetLastError function.

Requirements

Header

wincrypt.h

Library

crypt32.lib

See Also

Reference

Certificates Functions
CertAddSerializedElementToStore
CERT_CONTEXT