CERT_SIMPLE_CHAIN
This structure contains an array of chain elements and a summary trust status for the chain that the array represents.
typedef struct _CERT_SIMPLE_CHAIN {DWORDcbSize;CERT_TRUST_STATUSTrustStatus;DWORDcElement;PCERT_CHAIN_ELEMENT* rgpElement;PCERT_TRUST_LIST_INFOpTrustListInfo;} 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; 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
OS Versions: Windows CE 3.0 and later.
Header: Wincrypt.h.
See Also
CERT_CHAIN_CONTEXT | CERT_CHAIN_ELEMENT | CERT_TRUST_STATUS | CERT_TRUST_LIST_INFO
Last updated on Thursday, April 08, 2004
© 1992-2003 Microsoft Corporation. All rights reserved.