CERT_CHAIN_ELEMENT
This structure is a single element in a simple certificate chain. Each element has a pointer to a certificate context, a pointer to a structure that indicates the error status and information status of the certificate, and a pointer to a structure that indicates the revocation status of the certificate.
typedef struct _CERT_CHAIN_ELEMENT {
DWORD cbSize;
PCCERT_CONTEXT pCertContext;
CERT_TRUST_STATUS TrustStatus;
PCERT_REVOCATION_INFO pRevocationInfo;
} CERT_CHAIN_ELEMENT, *PCERT_CHAIN_ELEMENT;
Members
- cbSize
Size of this structure in bytes. - pCertContext
Pointer to a certificate context. - TrustStatus
Structure indicating the status of the certificate. The structure includes an error status code and an information status code. For information on status code values, see the CERT_TRUST_STATUS structure. - pRevocationInfo
Pointer to a CERT_REVOCATION_INFO structure with information on the revocation status of the certificate. If the certificate is not revoked, pRevocationInfo is NULL.
Requirements
| Runs on | Versions | Defined in | Include | Link to |
|---|---|---|---|---|
| Windows CE OS | 3.0 or later | Wincrypt.h |
Note This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.
See Also
CERT_SIMPLE_CHAIN, CERT_TRUST_STATUS
Last updated on Tuesday, July 13, 2004
© 1992-2000 Microsoft Corporation. All rights reserved.