![]() |
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
(PowerBuilder) Convert PKCS12 / PFX to Java Keystore (JKS)Loads a PKCS12 / PFX file and saves it to a Java keystore (JKS) file. Note: This example requires Chilkat v11.0.0 or greater.
integer li_rc integer li_Success oleobject loo_Pfx string ls_JksPassword string ls_Alias oleobject loo_Jks li_Success = 0 // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Pfx = create oleobject 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 // Load the PKCS12 from a file li_Success = loo_Pfx.LoadPfxFile("/someDir/my.p12","myPfxPassword") if li_Success = 0 then Write-Debug loo_Pfx.LastErrorText destroy loo_Pfx return end if ls_JksPassword = "myJksPassword" ls_Alias = "firstPrivateKeyAlias" loo_Jks = create oleobject li_rc = loo_Jks.ConnectToNewObject("Chilkat.JavaKeyStore") // Convert to a Java keystore object. // The jksPassword is the password to be used for the JKS private key entries. // It may be the same as the PFX password, but can also be different if desired. li_Success = loo_Pfx.ToJksObj(ls_Alias,ls_JksPassword,loo_Jks) if li_Success = 0 then Write-Debug loo_Pfx.LastErrorText destroy loo_Pfx destroy loo_Jks return end if // Save the Java keystore to a file. li_Success = loo_Jks.ToFile(ls_JksPassword,"/myKeystores/my.jks") if li_Success <> 1 then Write-Debug loo_Jks.LastErrorText destroy loo_Jks destroy loo_Pfx destroy loo_Jks return end if Write-Debug "Successfully converted PFX to JKS." destroy loo_Pfx destroy loo_Jks |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.