CERT_POLICIES_INFO

The CERT_POLICIES_INFO structure contains an array of CERT_POLICY_INFO.

When the CryptDecodeObject or CryptDecodeObjectEx function is performed on a CERT_EXTENSION structure's Value member, and the structure's pszObjId member is set to "2.5.29.32", this CERT_POLICIES_INFO is output from the function call.

typedef struct _CERT_POLICIES_INFO {
    DWORD                cPolicyInfo;
    CERT_POLICY_INFO*    rgPolicyInfo;
} CERT_POLICIES_INFO,  *PCERT_POLICIES_INFO;
 

Members

cPolicyInfo
The number of elements in the array rgPolicyInfo.
rgPolicyInfo
An array of structures, each holding CERT_POLICY_INFO information.

See Also

CERT_POLICY_INFO