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
(PowerBuilder) Get Certificates from .p12 / .pfxA PKCS12 (.p12 / .pfx) is a container for holding a certificate, its private key, and the certs in the chain of authentication up to and possibly including the root CA cert. A .p12 is not required to contain certain things. It will contain whatever the creator of the .p12 decided to include. It's possible to contain just a private key, just a cert, many certs without private keys, or many certs with many private keys. Usually, a .p12 contains one certificate, its associated private key, and certificates in the chain of authentication.
integer li_rc oleobject loo_Pfx integer li_Success integer li_NumCerts integer i oleobject loo_Cert oleobject loo_Issuer loo_Pfx = create oleobject // Use "Chilkat_9_5_0.Pfx" for versions of Chilkat < 10.0.0 li_rc = loo_Pfx.ConnectToNewObject("Chilkat.Pfx") if li_rc < 0 then destroy loo_Pfx MessageBox("Error","Connecting to COM object failed") return end if li_Success = loo_Pfx.LoadPfxFile("qa_data/pfx/test.pfx","pfx_password") if li_Success = 0 then Write-Debug loo_Pfx.LastErrorText destroy loo_Pfx return end if // Iterate over the certs contained in the PFX li_NumCerts = loo_Pfx.NumCerts i = 0 do while i < li_NumCerts loo_Cert = loo_Pfx.GetCert(i) Write-Debug "--- " + string(i) + " ---" Write-Debug loo_Cert.SubjectDN // Is this a root cert, or self-signed? Write-Debug "Root: " + string(loo_Cert.IsRoot) Write-Debug "Self-Signed: " + string(loo_Cert.SelfSigned) // If this certificate is not the root (self-signed), then get the issuer. // If the issuing certificate is contained in the PFX, then it will be found here.. if loo_Cert.SelfSigned <> 1 then loo_Issuer = loo_Cert.FindIssuer() if loo_Cert.LastMethodSuccess = 0 then Write-Debug "Issuer not found." else Write-Debug "Issuer: " + loo_Issuer.SubjectDN destroy loo_Issuer end if end if destroy loo_Cert i = i + 1 loop // Usually, the user certificate is at index 0, its issuer is at index 1, etc. until we get to the root certificate. destroy loo_Pfx |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.