Sample code for 30+ languages & platforms
Delphi ActiveX

CAdES BES Detached Signature

See more Encryption Examples

Demonstrates how to create a CAdES BES detached signature file (.p7s).

Chilkat Delphi ActiveX Downloads

Delphi ActiveX
uses
    Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
    Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Chilkat_TLB;

...

procedure TForm1.Button1Click(Sender: TObject);
var
success: Integer;
crypt: TChilkatCrypt2;
pfxPath: WideString;
pfxPassword: WideString;
cert: TChilkatCert;
inFile: WideString;
sigFile: WideString;

begin
success := 0;

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

crypt := TChilkatCrypt2.Create(Self);

// Use a digital certificate and private key from a PFX file (.pfx or .p12).
pfxPath := '/Users/chilkat/testData/pfx/acme.pfx';
pfxPassword := 'test123';

cert := TChilkatCert.Create(Self);
success := cert.LoadPfxFile(pfxPath,pfxPassword);
if (success <> 1) then
  begin
    Memo1.Lines.Add(cert.LastErrorText);
    Exit;
  end;

// Tell the crypt component to use this cert.
success := crypt.SetSigningCert(cert.ControlInterface);
if (success <> 1) then
  begin
    Memo1.Lines.Add(crypt.LastErrorText);
    Exit;
  end;

// The CadesEnabled property applies to all methods that create PKCS7 signatures. 
// To create a CAdES-BES signature, set this property equal to true. 
crypt.CadesEnabled := 1;

// We can sign any type of file, creating a .p7s as output:
inFile := '/Users/chilkat/testData/pdf/sample.pdf';
sigFile := '/Users/chilkat/testData/p7s/sample.p7s';

// Create the detached CAdES-BES signature:
success := crypt.CreateP7S(inFile,sigFile);
if (success = 0) then
  begin
    Memo1.Lines.Add(crypt.LastErrorText);
    Exit;
  end;

success := crypt.VerifyP7S(inFile,sigFile);
if (success = 0) then
  begin
    Memo1.Lines.Add(crypt.LastErrorText);
    Exit;
  end;

Memo1.Lines.Add('Success!');
end;