CERT_EXTENSION

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This structure contains the extension information for a certificate.

Syntax

typedef struct _CERT_EXTENSION {
  LPSTR pszObjId;
  BOOL fCritical;
  CRYPT_OBJID_BLOB Value;
} CERT_EXTENSION, *PCERT_EXTENSION;

Members

  • pszObjId
    Object identifier (OID) that specifies the structure of the extension data contained in the Value member. For specifics on extension OIDs and their related structures, see X.509 Certificate Extension Structures.
  • fCritical
    If TRUE, any limitations specified by the extension in the Value member of this structure are imperative. If FALSE, limitations set by this extension can be ignored.
  • Value
    A BLOB (Cryptography) structure that contains the encoded extension data. The cbData member of Value indicates the length in bytes of the pbData member. The pbData byte string is the encoded extension.

Requirements

Header wincrypt.h
Windows Embedded CE Windows CE 3.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

CertFindExtension
BLOB (Cryptography)
CERT_INFO