|
Add items to the CRL To add the certificate information to the CRL, use Items property of TElCertificateRevocationList.
You can create new certificate revocation list or load an existing list.
CRLs can be stored in DER and PEM formats. For description of various formats of CRLs see the corresponding how-to article. Each item represents one certificate. The item is represented by TElRevocationItem. Items can be accessed via Items property, and added using Add() method. The CRL includes the following information about the certificate:
The standard doesn't require, that the certificates, included in the CRL, are issued with the same CA certificate, so you can put certificates from various CAs to the same CRL. Note, that if the latter situation is the case, you need to provide the name of the certificate issuer via TElRevocationItem.Extensions.IssuerName property. If you don't provide the issuer name, and two certificates have the same serial number, a conflict will arise. After you add the certificates to the list, remember to save the CRL as described in the corresponding how-to article. For more information about CRLs see RFC 3280. |

