(CkPython) Convert PKCS12 / PFX to Java KeyStore
Converts a PKCS12 / PFX file to a Java keystore (JKS) file.
import sys
import chilkat
# This requires the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
jks = chilkat.CkJavaKeyStore()
pfx = chilkat.CkPfx()
pfxPassword = "secret"
# Load a PKCS12 from a file.
success = pfx.LoadPfxFile("/someDir/my.p12",pfxPassword)
if (success != True):
print(pfx.lastErrorText())
sys.exit()
alias = "someAlias"
jksPassword = "jksSecret"
# Add the PKCS12 to the empty Java keystore object:
success = jks.AddPfx(pfx,alias,jksPassword)
if (success != True):
print(jks.lastErrorText())
sys.exit()
# Write the Java keystore to a file:
success = jks.ToFile(jksPassword,"/jksFiles/my.jks")
if (success != True):
print(jks.lastErrorText())
else:
print("Successfully converted PKCS12 to JKS")
|