CERT_EXTENSION

The CERT_EXTENSION structure contains the extension information for a certificate. The data in the Value member is in its encoded representation.

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

Members

pszObjId
The object identifier that specifies the type of extension data contained in the Value blob.
fCritical
If this flag is set, the extension must be complied with, or the certificate that contains it should not be used.
Value
A structure that contains the extension data (encoded form).

See Also

BLOB Structure, CERT_EXTENSIONS, CERT_INFO, CRL_ENTRY, CRL_INFO, CertFindExtension