Sample code for 30+ languages & platforms
Delphi DLL

Add a PFX Source from BinData

See more Email Object Examples

Demonstrates the Chilkat Email.AddPfxSourceBd method, which adds PFX data held in a BinData object to the list of certificate and private-key sources used during decryption or signing. The second argument is the PFX password. Call it before obtaining the encrypted email so Chilkat can decrypt it automatically. This example loads a PFX into a BinData, adds it, and then loads an encrypted email.

Background: This is the in-memory (BinData) counterpart to AddPfxSourceFile. It is the right choice when the PFX bytes come from somewhere other than a file — a database, a secrets manager, or an HTTP download — letting you supply the certificate and private key without first writing them to disk (which is preferable for sensitive key material).

Chilkat Delphi DLL Downloads

Delphi DLL
var
success: Boolean;
email: HCkEmail;
bdPfx: HCkBinData;

begin
success := False;

//  Demonstrates the AddPfxSourceBd method, which adds PFX data (held in a BinData) to the
//  list of certificate and private-key sources used during decryption or signing.  The
//  second argument is the PFX password.  Call it before obtaining the encrypted email.

email := CkEmail_Create();

//  Load PFX data into a BinData object.
bdPfx := CkBinData_Create();
success := CkBinData_LoadFile(bdPfx,'qa_data/certs/decryption.pfx');
if (success = False) then
  begin
    Memo1.Lines.Add(CkBinData__lastErrorText(bdPfx));
    Exit;
  end;

//  Add the PFX as a source of the certificate + private key.
success := CkEmail_AddPfxSourceBd(email,bdPfx,'pfx_password');
if (success = False) then
  begin
    Memo1.Lines.Add(CkEmail__lastErrorText(email));
    Exit;
  end;

//  Load an encrypted email; Chilkat decrypts it using the PFX source.
success := CkEmail_LoadEml(email,'qa_data/eml/encrypted.eml');
if (success = False) then
  begin
    Memo1.Lines.Add(CkEmail__lastErrorText(email));
    Exit;
  end;

Memo1.Lines.Add('Decrypted = ' + IntToStr(Ord(CkEmail_getDecrypted(email))));

//  Note: Paths such as "qa_data/..." are relative local filesystem paths,
//  relative to the current working directory of the running application.

CkEmail_Dispose(email);
CkBinData_Dispose(bdPfx);