Sample code for 30+ languages & platforms
Node.js

Convert PKCS12 / PFX to Java KeyStore

See more Java KeyStore (JKS) Examples

Converts a PKCS12 / PFX file to a Java keystore (JKS) file.

Chilkat Node.js Downloads

Node.js
NODEJS_PRELUDE

function chilkatExample() {

    var success = false;

    // This requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    var jks = new chilkat.JavaKeyStore();

    var pfx = new chilkat.Pfx();

    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");
    }


}

chilkatExample();