CERT_LOGOTYPE_EXT_INFO structure (wincrypt.h)

The CERT_LOGOTYPE_EXT_INFO structure contains a set of logotype information.

Syntax

typedef struct _CERT_LOGOTYPE_EXT_INFO {
  DWORD                     cCommunityLogo;
  PCERT_LOGOTYPE_INFO       rgCommunityLogo;
  PCERT_LOGOTYPE_INFO       pIssuerLogo;
  PCERT_LOGOTYPE_INFO       pSubjectLogo;
  DWORD                     cOtherLogo;
  PCERT_OTHER_LOGOTYPE_INFO rgOtherLogo;
} CERT_LOGOTYPE_EXT_INFO, *PCERT_LOGOTYPE_EXT_INFO;

Members

cCommunityLogo

The number of elements in the rgCommunityLogo array.

rgCommunityLogo

An array of CERT_LOGOTYPE_INFO structures that contain the community logotypes. The cCommunityLogo member contains the number of elements in this array.

pIssuerLogo

The address of a CERT_LOGOTYPE_INFO structure that contains the issuer logotype. This member is optional and may be NULL.

pSubjectLogo

The address of a CERT_LOGOTYPE_INFO structure that contains the subject logotype. This member is optional and may be NULL.

cOtherLogo

The number of elements in the rgOtherLogo array.

rgOtherLogo

An array of CERT_OTHER_LOGOTYPE_INFO structures that contain any other logotypes. The cOtherLogo member contains the number of elements in this array.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Header wincrypt.h

See also

CryptDecodeObject

CryptEncodeObject

CryptEncodeObjectEx