Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Xojo Plugin) Get Issuer Certificate InformationSee more Certificates ExamplesA certificate contains information about its issuer. This example demonstrates how to get the issuer information from a certificate.
Dim cert As New Chilkat.Cert Dim success As Boolean success = cert.LoadFromFile("qa_data/certs/sample.cer") If (success = False) Then System.DebugLog(cert.LastErrorText) Return End If // Get issuer information: // ----------------------------------------------------------------------- // (Not all subject fields may exist depending on the issuer certificate.) // ----------------------------------------------------------------------- // Issuer DN (Distinguished Name, i.e. all the Issuer subject parts) System.DebugLog("DN: " + cert.IssuerDN) // Common Subject parts: // Issuer Common Name System.DebugLog("CN: " + cert.IssuerCN) // Issuer Country System.DebugLog("C: " + cert.IssuerC) // Issuer Email address System.DebugLog("E: " + cert.IssuerE) // Issuer Locality System.DebugLog("L: " + cert.IssuerL) // Issuer Organization System.DebugLog("O: " + cert.IssuerO) // Issuer Organizational Unit System.DebugLog("OU: " + cert.IssuerOU) // Issuer State System.DebugLog("S: " + cert.IssuerS) |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.