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 the Certificate with Private Key from a Java KeyStoreSee more Java KeyStore (JKS) ExamplesLoad a Chilkat certificate object from a Java KeyStore.
integer li_rc oleobject loo_Jks string ls_Password integer li_Success oleobject loo_Chain oleobject loo_Cert oleobject loo_Crypt // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // Most of the time a .jks contains one certificate with it's associated private key. // (Similar to how a .pfx/.p12 usually contains a particular certificate with private key.) // This example demonstrates how to get the certificate with private key such that it can be used // by other Chilkat classes wherever a cert w/ private key is needed. 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 ls_Password = "secret" li_Success = loo_Jks.LoadFile(ls_Password,"qa_data/jks/test_secret.jks") if li_Success <> 1 then Write-Debug loo_Jks.LastErrorText destroy loo_Jks return end if // Make sure we have a private key. if loo_Jks.NumPrivateKeys < 1 then Write-Debug "No private key available." destroy loo_Jks return end if // ------------------------------------------------------------------------- // Get the certificate chain associated with the 1st (and probably only) private key in the JKS. loo_Chain = loo_Jks.GetCertChain(0) if loo_Jks.LastMethodSuccess <> 1 then Write-Debug loo_Jks.LastErrorText destroy loo_Jks return end if loo_Cert = loo_Chain.GetCert(0) if loo_Chain.LastMethodSuccess <> 1 then Write-Debug loo_Chain.LastErrorText destroy loo_Chain destroy loo_Jks return end if destroy loo_Chain // Verify again that this cert has a private key. if loo_Cert.HasPrivateKey() <> 1 then Write-Debug "Certificate has no associated private key." destroy loo_Cert destroy loo_Jks return end if // We now have the cert object with it's associated private key, and it can be used in other Chilkat classes where needed. // For example.. loo_Crypt = create oleobject // Use "Chilkat_9_5_0.Crypt2" for versions of Chilkat < 10.0.0 li_rc = loo_Crypt.ConnectToNewObject("Chilkat.Crypt2") li_Success = loo_Crypt.SetSigningCert(loo_Cert) if li_Success = 0 then Write-Debug loo_Crypt.LastErrorText destroy loo_Jks destroy loo_Crypt return end if // ... // ... destroy loo_Cert destroy loo_Jks destroy loo_Crypt |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.