2.2.9 ENCRYPTION_CERTIFICATE_LIST

The ENCRYPTION_CERTIFICATE_LIST type is used to represent a set of X.509 certificates. For more information on certificates, see [X509].

 typedef struct _ENCRYPTION_CERTIFICATE_LIST {
   [range(0,500)] DWORD nUsers;
   [size_is(nUsers,)] ENCRYPTION_CERTIFICATE** Users;
 } ENCRYPTION_CERTIFICATE_LIST;

nUsers: The number of certificates in the list.

Users: A pointer to an array of pointers to ENCRYPTION_CERTIFICATE (2.2.8) structures. This array is of size nUsers.<23>