X509.TextDump Method
Dump details of an X.509 certificate or a X.509 certificate revocation list (CRL) or a PKCS-10 certificate signing request (CSR) to a text file.
Syntax
[C#]
public static int TextDump(
string outputFile,
string certFile,
X509.OutputOpts outOpts
)
[VB.NET]
Public Shared Function TextDump ( _
outputFile As String, _
certFile As String, _
outOpts As X509.OutputOpts _
) As Integer
Parameters
- outputFile
- Filename of text file to be created
- certFile
- Filename of certificate file (or its base64 representation)
- outOpts
- Type: X509.OutputOpts
Options for output (optional)
Return Value
If successful, the return value is zero; otherwise it returns a nonzero
error code.
Remarks
The notation [!] denotes a critical extension, e.g. Key Usage[!]:.
See Also
VB6/C equivalent: X509_TextDump
[Contents] [Index]