CERT_SIMPLE_CHAIN
A version of this page is also available for
4/8/2010
This structure contains an array of chain elements and a summary trust status for the chain that the array represents.
Syntax
typedef struct _CERT_SIMPLE_CHAIN {
DWORD cbSize;
CERT_TRUST_STATUS TrustStatus;
DWORD cElement;
PCERT_CHAIN_ELEMENT* rgpElement;
PCERT_TRUST_LIST_INFO pTrustListInfo;
} CERT_SIMPLE_CHAIN, *PCERT_SIMPLE_CHAIN;
Members
- cbSize
Size of this structure in bytes.
- TrustStatus
Structure that indicates the trust status of the whole chain. The structure includes an error status code and an information status code. For more information about status code values, see CERT_TRUST_STATUS.
- cElement
Number of CERT_CHAIN_ELEMENT structures in the array.
- rgpElement
Pointer to an array of CERT_CHAIN_ELEMENT structures. The array element rgpElement[0] is the end certificate chain element and rgpElement[cElement-1] is the self-signed root certificate element.
- pTrustListInfo
Pointer to a CERT_TRUST_LIST_INFO structure that contains a pointer to a CTL connecting this chain to a next certificate chain. If the current chain is the final chain, pTrustListInfo is NULL.
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
CERT_CHAIN_CONTEXT
CERT_CHAIN_ELEMENT
CERT_TRUST_STATUS
CERT_TRUST_LIST_INFO