CTL_ENTRY

The CTL_ENTRY structure is an entry in a CTL.

typedef struct _CTL_ENTRY {
    CRYPT_DATA_BLOB     SubjectIdentifier;   // For example, its hash
    DWORD               cAttribute;
    PCRYPT_ATTRIBUTE    rgAttribute;         // OPTIONAL
} CTL_ENTRY, *PCTL_ENTRY;
 

Members

SubjectIdentifier
Uniquely identifies the subject. It can be a hash or any unique byte sequence.
cAttribute
The count of elements in rgAttribute.
rgAttribute
An optional array of structures, each holding CRYPT_ATTRIBUTE information about the subject.

See Also

BLOB Structure, CTL_INFO, CRYPT_ATTRIBUTE