Extracts issuer's name from X.509 certificate.
Public Declare Function X509_CertIssuerName Lib "diCrPKI.dll"
(ByVal strCertFile As String, ByVal strOutput As String,
ByVal nOutChars As Long, ByVal strDelim As String, ByVal nOptions As Long) As Long
nRet = X509_CertIssuerName(strCertFile, strOutput, nOutChars, strDelim, nOptions)
String with the filename of the X.509 certificate
(or base64 representation).String to receive the name string.Long specifying the maximum number of characters to be received.String specifying the character to use as a delimiter (default ";").Long Option flags. Select one of:
long _stdcall X509_CertIssuerName(const char *szCertFile, char *szOutput, long nOutChars, const char *szDelim, long flags);
Long: Returns the number of characters set in strOutput.
If nOutChars is zero it returns the maximum number of characters required.
C/C++ users should allocate one extra for the terminating NUL character.
If an error occurs, it returns a negative error code.
See the remarks for X509_CertSubjectName.
See X509_CertSubjectName.
X509_CertIssuerName X509_HashIssuerAndSN X509_QueryCert