Pascal (Lazarus/Delphi)
Pascal (Lazarus/Delphi)
Duplicate openssl smime -encrypt -binary -aes-256-cbc -in some_file.dat -out some_file.dat.enc -outform DER cert.crt
See more OpenSSL Examples
Demonstrates how to encrypt to binary DER using 256-bit AES (CBC mode) as the underlying symmetric encryption algorithm, to produce PKCS7 enveloped data (binary DER).Duplicates the following openssl command:
openssl smime -encrypt -binary -aes-256-cbc -in some_file.dat -out some_file.dat.enc -outform DER cert.crt
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.BinData,
Chilkat.Cert,
Chilkat.Crypt2;
// ---------------------------------------------------------------------------
procedure RunDemo;
var
success: Boolean;
cert: TCert;
bd: TBinData;
crypt: TCrypt2;
begin
success := False;
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
cert := TCert.Create;
success := cert.LoadFromFile('qa_data/openssl/EE.cer');
if (success = False) then
begin
WriteLn(cert.LastErrorText);
Exit;
end;
bd := TBinData.Create;
success := bd.LoadFile('qa_data/openssl/hello.txt');
// Assuming success..
crypt := TCrypt2.Create;
success := crypt.SetEncryptCert(cert);
if (success = False) then
begin
WriteLn(crypt.LastErrorText);
Exit;
end;
crypt.CryptAlgorithm := 'PKI';
// Indicate the underlying symmetric encryption to be used:
crypt.Pkcs7CryptAlg := 'aes';
crypt.KeyLength := 256;
crypt.CipherMode := 'cbc';
success := crypt.CkEncryptFile('qa_data/openssl/hello.txt','qa_output/hello.txt.enc');
if (success = False) then
begin
WriteLn(crypt.LastErrorText);
Exit;
end;
WriteLn('Success.');
cert.Free;
bd.Free;
crypt.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.