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
(PowerShell) 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.
Add-Type -Path "C:\chilkat\ChilkatDotNet47-9.5.0-x64\ChilkatDotNet47.dll" $cert = New-Object Chilkat.Cert $success = $cert.LoadFromFile("qa_data/certs/sample.cer") if ($success -eq $false) { $($cert.LastErrorText) exit } # 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: " + $cert.IssuerDN) # Common Subject parts: # Issuer Common Name $("CN: " + $cert.IssuerCN) # Issuer Country $("C: " + $cert.IssuerC) # Issuer Email address $("E: " + $cert.IssuerE) # Issuer Locality $("L: " + $cert.IssuerL) # Issuer Organization $("O: " + $cert.IssuerO) # Issuer Organizational Unit $("OU: " + $cert.IssuerOU) # Issuer State $("S: " + $cert.IssuerS) |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.