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) Load Java KeyStore and Access ContentsLoads a Java keystore file and iterates over the contents. A Java keystore (.jks) file can contain one or more trusted root certificate entries and/or one or more private key entries. Each private key entry includes an associated certificate chain.
integer li_rc oleobject loo_Jks integer li_Success integer li_NumTrustedCerts integer li_NumPrivateKeys oleobject loo_Cert string ls_Alias integer i oleobject loo_PrivKey oleobject loo_CertChain // This requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Jks = create oleobject // Use "Chilkat_9_5_0.JavaKeyStore" for versions of Chilkat < 10.0.0 li_rc = loo_Jks.ConnectToNewObject("Chilkat.JavaKeyStore") if li_rc < 0 then destroy loo_Jks MessageBox("Error","Connecting to COM object failed") return end if // Load the Java keystore from a file. The JKS file password is used // to verify the keyed digest that is found at the very end of the keystore. // It verifies there has been no tampering with the file. li_Success = loo_Jks.LoadFile("jksFilePassword","/someDir/keyStore.jks") if li_Success <> 1 then Write-Debug loo_Jks.LastErrorText destroy loo_Jks return end if // Find out how many of each type of entry: li_NumTrustedCerts = loo_Jks.NumTrustedCerts li_NumPrivateKeys = loo_Jks.NumPrivateKeys // For each trusted certificate, access it by getting // it as a cert object. Also get the alias associated with the certificate. Write-Debug "Trusted Certs:" i = 0 do while i < li_NumTrustedCerts loo_Cert = loo_Jks.GetTrustedCert(i) Write-Debug loo_Jks.GetTrustedCertAlias(i) + ": " + loo_Cert.SubjectDN destroy loo_Cert i = i + 1 loop // For each private key entry, get the private key and // the associated certificate chain. // Each private key is password protected. Usually it is the same // password as used for the keyed digest of the entire JKS. // However, this does not have to be. The password is passed // here to handle the possibility of each private key requiring // a different password. Write-Debug "Private Keys:" i = 0 do while i < li_NumPrivateKeys loo_PrivKey = loo_Jks.GetPrivateKey("jksFilePassword",i) Write-Debug loo_Jks.GetPrivateKeyAlias(i) loo_CertChain = loo_Jks.GetCertChain(i) // The 1st certificate in the chain is the one associated with the private key. loo_Cert = loo_CertChain.GetCert(0) Write-Debug loo_Cert.SubjectDN destroy loo_Cert destroy loo_CertChain destroy loo_PrivKey i = i + 1 loop destroy loo_Jks |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.