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
(Objective-C) 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.
#import <CkoCert.h> CkoCert *cert = [[CkoCert alloc] init]; BOOL success = [cert LoadFromFile: @"qa_data/certs/sample.cer"]; if (success == NO) { NSLog(@"%@",cert.LastErrorText); return; } // 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) NSLog(@"%@%@",@"DN: ",cert.IssuerDN); // Common Subject parts: // Issuer Common Name NSLog(@"%@%@",@"CN: ",cert.IssuerCN); // Issuer Country NSLog(@"%@%@",@"C: ",cert.IssuerC); // Issuer Email address NSLog(@"%@%@",@"E: ",cert.IssuerE); // Issuer Locality NSLog(@"%@%@",@"L: ",cert.IssuerL); // Issuer Organization NSLog(@"%@%@",@"O: ",cert.IssuerO); // Issuer Organizational Unit NSLog(@"%@%@",@"OU: ",cert.IssuerOU); // Issuer State NSLog(@"%@%@",@"S: ",cert.IssuerS); |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.