CRL_ENTRY
The CRL_ENTRY structure is an entry in a CRL.
typedef struct _ CRL_ENTRY {
CRYPT_INTEGER_BLOB SerialNumber;
FILETIME RevocationDate;
DWORD cExtension;
PCERT_EXTENSION rgExtension;
} CRL_ENTRY, *PCRL_ENTRY;
Members
-
SerialNumber
-
The serial number of a certificate that was revoked. See CERT_INFO for details.
For X509_ASN_ENCODING, leading 0x00 or 0xFF bytes are removed. See CertCompareIntegerBlob.
-
RevocationDate
-
The date that the certificate was revoked. For X509_ASN_ENCODING, time is encoded as a two-digit year precise to seconds. The two-digit year is interpreted as being the four-digit years of 1968 through 2067.
-
cExtension
-
The number of elements in the array rgExtension.
-
rgExtension
-
An array of structures, each holding CERT_EXTENSION information about the revoked certificate.
See Also
BLOB Structure, CERT_EXTENSION, CRL_INFO