JavaScript
JavaScript
Convert PKCS12 / PFX to Java KeyStore
See more Java KeyStore (JKS) Examples
Converts a PKCS12 / PFX file to a Java keystore (JKS) file.
Note
This example is intended for running within a Chilkat.Js embedded JavaScript engine. All Chilkat JavaScript examples require Chilkat
v11.4.0 or greater.
var success = false;
// This requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
var jks = new CkJavaKeyStore();
var pfx = new CkPfx();
var pfxPassword = "secret";
// Load a PKCS12 from a file.
success = pfx.LoadPfxFile("/someDir/my.p12",pfxPassword);
if (success !== true) {
console.log(pfx.LastErrorText);
return;
}
var alias = "someAlias";
var jksPassword = "jksSecret";
// Add the PKCS12 to the empty Java keystore object:
success = jks.AddPfx(pfx,alias,jksPassword);
if (success !== true) {
console.log(jks.LastErrorText);
return;
}
// Write the Java keystore to a file:
success = jks.ToFile(jksPassword,"/jksFiles/my.jks");
if (success !== true) {
console.log(jks.LastErrorText);
}
else {
console.log("Successfully converted PKCS12 to JKS");
}