Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Java) Load PFX/P12 from a Base64 Encoded PFX FileDemonstrates 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"); } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.