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
(Delphi DLL) Load PFX/P12 from a Base64 Encoded PFX FileDemonstrates how to call LoadPfxEncoded.
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, BinData, Pfx; ... procedure TForm1.Button1Click(Sender: TObject); var bd: HCkBinData; success: Boolean; strBase64: PWideChar; pfx: HCkPfx; password: PWideChar; begin bd := CkBinData_Create(); success := CkBinData_LoadFile(bd,'qa_data/pfx/cert_test123.pfx'); if (success <> True) then begin Memo1.Lines.Add('Failed to load PFX file.'); Exit; end; // Get the bytes contained in the PFX in base64 format: strBase64 := CkBinData__getEncoded(bd,'base64'); // The base64 looks like this: "MIIbEAIBAzCCGswGCSqGSIb3DQEHAaCCGr0Eghq5MIIatTCCBg..." Memo1.Lines.Add(strBase64); pfx := CkPfx_Create(); // Load the PFX from the base64 string password := 'test123'; success := CkPfx_LoadPfxEncoded(pfx,strBase64,'base64',password); if (success <> True) then begin Memo1.Lines.Add(CkPfx__lastErrorText(pfx)); Exit; end; Memo1.Lines.Add('success'); CkBinData_Dispose(bd); CkPfx_Dispose(pfx); end; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.