Extracts issuer's distinguished 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)
long __stdcall X509_CertIssuerName(const char *szCertFile, char *szOutput, long nOutChars, const char *szDelim, long nOptions);
Returns the number of characters set in szOutput. 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.
The output using the PKI_X509_LDAP option is suitable as content for an <X509IssuerName>
node in an XML-DSIG document.
See the remarks for X509_CertSubjectName()
.
See X509_CertSubjectName
.
X509_CertIssuerName X509_HashIssuerAndSN X509_QueryCert