(Java) Load PFX/P12 from a Base64 Encoded PFX File
Demonstrates how to call LoadPfxEncoded.
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[])
{
CkBinData bd = new CkBinData();
boolean 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");
}
}
|