|  | 
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
| (Ruby) 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.
 require 'chilkat' cert = Chilkat::CkCert.new() success = cert.LoadFromFile("qa_data/certs/sample.cer") if (success == false) print cert.lastErrorText() + "\n"; exit end # 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) print "DN: " + cert.issuerDN() + "\n"; # Common Subject parts: # Issuer Common Name print "CN: " + cert.issuerCN() + "\n"; # Issuer Country print "C: " + cert.issuerC() + "\n"; # Issuer Email address print "E: " + cert.issuerE() + "\n"; # Issuer Locality print "L: " + cert.issuerL() + "\n"; # Issuer Organization print "O: " + cert.issuerO() + "\n"; # Issuer Organizational Unit print "OU: " + cert.issuerOU() + "\n"; # Issuer State print "S: " + cert.issuerS() + "\n"; | ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.