Pascal (Lazarus/Delphi)
Pascal (Lazarus/Delphi)
Load Identities from PEM Text
See more PFX/P12 Examples
Demonstrates Pfx.LoadPem, which loads one or more certificate/private-key identities from PEM-formatted text and builds the contents of the Pfx object.
The file path is relative to the application's current working directory. An absolute path may also be used. Supply the path appropriate to your own environment.
Background. The password decrypts any encrypted private keys in the PEM. This builds a PFX in memory from PEM material, which can then be serialized to PKCS#12.
Chilkat Pascal (Lazarus/Delphi) Downloads
program ChilkatDemo;
// Demonstrates using the Chilkat Pascal wrapper via the C bridge DLL.
// Builds as a console application under Lazarus (FPC) or Delphi.
{$IFDEF FPC}
{$MODE DELPHI}
{$ENDIF}
{$APPTYPE CONSOLE}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
SysUtils,
CkDllLoader,
Chilkat.Pfx,
Chilkat.StringBuilder;
// ---------------------------------------------------------------------------
procedure RunDemo;
var
success: Boolean;
pfx: TPfx;
sbPem: TStringBuilder;
bLoaded: Boolean;
pemText: string;
password: string;
begin
success := False;
pfx := TPfx.Create;
// The file path is relative to the application's current working directory. An absolute path
// may also be used. Supply the path appropriate to your own environment.
// Load the PEM text (certificates and private keys) into a string.
sbPem := TStringBuilder.Create;
bLoaded := sbPem.LoadFile('qa_data/identity.pem');
if (bLoaded <> True) then
begin
WriteLn('Failed to load the PEM file.');
Exit;
end;
pemText := sbPem.GetAsString();
if (sbPem.LastMethodSuccess = False) then
begin
WriteLn(sbPem.LastErrorText);
Exit;
end;
// The password decrypts any encrypted private keys in the PEM (use an empty string if none are
// encrypted). A password should come from a secure source rather than being hard-coded.
password := 'myPemPassword';
success := pfx.LoadPem(pemText,password);
if (success = False) then
begin
WriteLn(pfx.LastErrorText);
Exit;
end;
WriteLn('Loaded ' + pfx.NumPrivateKeys + ' private key(s).');
pfx.Free;
sbPem.Free;
end;
// ---------------------------------------------------------------------------
begin
try
RunDemo;
except
on E: Exception do
WriteLn('Unhandled exception: ', E.ClassName, ': ', E.Message);
end;
WriteLn;
{$IFDEF MSWINDOWS}
WriteLn('Press Enter to exit...');
ReadLn;
{$ENDIF}
end.