Sample code for 30+ languages & platforms
Delphi DLL

Load PFX/P12 from a Base64 Encoded PFX File

See more PFX/P12 Examples

Demonstrates how to call LoadPfxEncoded.

Chilkat Delphi DLL Downloads

Delphi DLL
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
success: Boolean;
bd: HCkBinData;
strBase64: PWideChar;
pfx: HCkPfx;
password: PWideChar;

begin
success := False;

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;