[]
Adds a CRL list for a specified signature.
public void AddVerificationCRL(Signature signature, byte[] crl)
Public Sub AddVerificationCRL(signature As Signature, crl As Byte())
| Type | Name | Description |
|---|---|---|
| Signature | signature | The Signature object. |
| byte[] | crl | The DER-encoded CRL. |
Adds a CRL list for a specified signature.
public byte[] AddVerificationCRL(Signature signature, string crlUri)
Public Function AddVerificationCRL(signature As Signature, crlUri As String) As Byte()
| Type | Name | Description |
|---|---|---|
| Signature | signature | The Signature object. |
| string | crlUri | The URI containing CRL. |
| Type | Description |
|---|---|
| byte[] | The DER-encoded CRL that was added, or null if CRL could not be obtained from |
Adds a CRL list for a specified signature.
public byte[] AddVerificationCRL(Signature signature, X509Certificate2 cert)
Public Function AddVerificationCRL(signature As Signature, cert As X509Certificate2) As Byte()
| Type | Name | Description |
|---|---|---|
| Signature | signature | The Signature object. |
| X509Certificate2 | cert | The certificate used to get the CRL URL. |
| Type | Description |
|---|---|
| byte[] | The DER-encoded CRL that was added, or null if CRL could not be obtained from |