Share via


CertSerializeCertificateStoreElement (Windows CE 5.0)

Send Feedback

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.

BOOL WINAPI CertSerializeCertificateStoreElement(PCCERT_CONTEXTpCertContext,DWORDdwFlags,BYTE* pbElement,DWORD* pcbElement);

Parameters

  • pCertContext
    [in] Pointer to the CERT_CONTEXT structure to be serialized.

  • dwFlags
    [in] Reserved for future use and must be set to 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 Values

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

OS Versions: Windows CE 3.0 and later.
Header: Wincrypt.h.
Link Library: Crypt32.lib.

See Also

CertAddSerializedElementToStore | CERT_CONTEXT

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.