Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

class System.​Security.​Cryptography.​X509Certificates.​CertificateRevocationListBuilder

Assembly: System.Security.Cryptography

Inheritance: object → CertificateRevocationListBuilder

Facilitates building a Certificate Revocation List (CRL).

Methods

public void
AddEntry​(byte[] serialNumber, Nullable`1 revocationTime = null, Nullable`1 reason = null)
public void
AddEntry​(ReadOnlySpan`1 serialNumber, Nullable`1 revocationTime = null, Nullable`1 reason = null)
public void
AddEntry​(X509Certificate2 certificate, Nullable`1 revocationTime = null, Nullable`1 reason = null)
public byte[]
Build​(X500DistinguishedName issuerName, X509SignatureGenerator generator, Numerics.BigInteger crlNumber, DateTimeOffset nextUpdate, HashAlgorithmName hashAlgorithm, X509AuthorityKeyIdentifierExtension authorityKeyIdentifier, Nullable`1 thisUpdate = null)
public byte[]
Build​(X509Certificate2 issuerCertificate, Numerics.BigInteger crlNumber, DateTimeOffset nextUpdate, HashAlgorithmName hashAlgorithm, RSASignaturePadding rsaSignaturePadding = null, Nullable`1 thisUpdate = null)
public bool
RemoveEntry​(byte[] serialNumber)
serialNumber The serial number to remove.
Returns <see langword="true" /> if the serial number was found in the list and was removed; otherwise, <see langword="false" /> .
Removes the specified serial number from the revocation list.
public bool
RemoveEntry​(ReadOnlySpan`1 serialNumber)
public bool
Equals​(object obj)
Inherited from object
protected void
Finalize​()
Inherited from object
public int
GetHashCode​()
Inherited from object
public Type
GetType​()
Inherited from object
protected object
MemberwiseClone​()
Inherited from object
public string
ToString​()
Inherited from object