Sample code for 30+ languages & platforms
Delphi DLL

Load P7B and List Certificates

Demonstrates how to load a .p7b containing certificates and accesses each individual certificate.

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, Cert, Pem;

...

procedure TForm1.Button1Click(Sender: TObject);
var
success: Boolean;
pem: HCkPem;
i: Integer;
numCerts: Integer;
cert: HCkCert;

begin
success := False;

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

success := False;

pem := CkPem_Create();

// Load the .p7b from a file.
success := CkPem_LoadP7bFile(pem,'/Users/chilkat/testData/p7b/myCerts.p7b');
if (success <> True) then
  begin
    Memo1.Lines.Add(CkPem__lastErrorText(pem));
    Exit;
  end;

numCerts := CkPem_getNumCerts(pem);
if (numCerts = 0) then
  begin
    Memo1.Lines.Add(('Error: Expected the .p7b to contain certificates.'));
    Exit;
  end;

// Access each certificate and show the DN (Distinguished Name)
for i := 1 to numCerts do
  begin
    cert := CkPem_GetCert(pem,i - 1);
    Memo1.Lines.Add(IntToStr(i) + ': ' + CkCert__subjectDN(cert));
    CkCert_Dispose(cert);
  end;

CkPem_Dispose(pem);

end;