X509.MakeCRL Method (String, String, String, String, String, String, X509.Options)
Create an X.509 Certificate Revocation List (CRL). [DEPRECATED]
Syntax
[C#]
[ObsoleteAttribute("Use X509.MakeCRL(String, String, String, String, String, String, SigAlgorithm, X509.CrlOptions)",
false)]
public static int MakeCRL(
string crlFile,
string issuerCert,
string issuerKeyFile,
string password,
string revokedCertList,
string extensions,
X509.Options options
)
[VB.NET]
<ObsoleteAttribute("Use X509.MakeCRL(String, String, String, String, String, String, SigAlgorithm, X509.CrlOptions)", _
False)> _
Public Shared Function MakeCRL ( _
crlFile As String, _
issuerCert As String, _
issuerKeyFile As String, _
password As String, _
revokedCertList As String, _
extensions As String, _
options As X509.Options _
) As Integer
Parameters
- crlFile
- name of new CRL file to be created
- issuerCert
- name of issuer's X.509 certificate file (or base64 representation)
- issuerKeyFile
- name of issuer's encrypted private key file
- password
- password for Issuer's encrypted private key file
- revokedCertList
- list of revoked certificates in format serialNumber,revocationDate; ... or the empty string "" for no revoked certificates. See the Remarks section below for more details
- extensions
- A list of attribute-value pairs separated by semicolons (;) or the empty string "". Valid attribute-value pairs are:
- lastUpdate=iso-date-string
- nextUpdate=iso-date-string
- options
- Type: X509.Options
Set as 0 to choose the default signature algorithm sha1WithRSAEncryption. To choose another signature algorithm, select one of the SigAlg_ options from X509.Options.
Return Value
If successful, the return value is zero; otherwise it returns a non-zero
error code.
Remarks
See remarks for MakeCRL(String, String, String, String, String, String, SigAlgorithm, X509.CrlOptions).
Examples (VB.NET)
See
Example1
See Also
VB6/C equivalent: X509_MakeCRL
[Contents] [Index]