Sample code for 30+ languages & platforms
Java

Load PFX/P12 from a Base64 Encoded PFX File

See more PFX/P12 Examples

Demonstrates how to call LoadPfxEncoded.

Chilkat Java Downloads

Java
import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    boolean success = false;

    CkBinData bd = new CkBinData();

    success = bd.LoadFile("qa_data/pfx/cert_test123.pfx");
    if (success != true) {
        System.out.println("Failed to load PFX file.");
        return;
        }

    // Get the bytes contained in the PFX in base64 format:
    String strBase64 = bd.getEncoded("base64");

    // The base64 looks like this:  "MIIbEAIBAzCCGswGCSqGSIb3DQEHAaCCGr0Eghq5MIIatTCCBg..."
    System.out.println(strBase64);

    CkPfx pfx = new CkPfx();

    // Load the PFX from the base64 string
    String password = "test123";
    success = pfx.LoadPfxEncoded(strBase64,"base64",password);
    if (success != true) {
        System.out.println(pfx.lastErrorText());
        return;
        }

    System.out.println("success");
  }
}