Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Visual FoxPro) 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.
LOCAL loCert LOCAL lnSuccess * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Cert') loCert = CreateObject('Chilkat.Cert') lnSuccess = loCert.LoadFromFile("qa_data/certs/sample.cer") IF (lnSuccess = 0) THEN ? loCert.LastErrorText RELEASE loCert CANCEL ENDIF * 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) ? "DN: " + loCert.IssuerDN * Common Subject parts: * Issuer Common Name ? "CN: " + loCert.IssuerCN * Issuer Country ? "C: " + loCert.IssuerC * Issuer Email address ? "E: " + loCert.IssuerE * Issuer Locality ? "L: " + loCert.IssuerL * Issuer Organization ? "O: " + loCert.IssuerO * Issuer Organizational Unit ? "OU: " + loCert.IssuerOU * Issuer State ? "S: " + loCert.IssuerS RELEASE loCert |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.