(JavaScript) Convert PKCS12 / PFX to Java KeyStore
Converts a PKCS12 / PFX file to a Java keystore (JKS) file.
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");
}
|