![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Delphi DLL) Sign PDF using PAdES-Baseline-BSee more PDF Signatures ExamplesPAdES-Baseline-B is the most basic, entry-level profile of the PDF Advanced Electronic Signatures (PAdES) standard. It means:
In short: Baseline-B = a standard PDF digital signature that ensures integrity and origin, but without time or revocation guarantees.
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Pdf, Cert, JsonObject; ... procedure TForm1.Button1Click(Sender: TObject); var success: Boolean; pdf: HCkPdf; json: HCkJsonObject; cert: HCkCert; outFilePath: PWideChar; begin success := False; pdf := CkPdf_Create(); // Load a PDF to be signed. success := CkPdf_LoadFile(pdf,'c:/someDir/my.pdf'); if (success = False) then begin Memo1.Lines.Add(CkPdf__lastErrorText(pdf)); Exit; end; // Options for signing are specified in JSON. json := CkJsonObject_Create(); CkJsonObject_UpdateString(json,'subFilter','/ETSI.CAdES.detached'); CkJsonObject_UpdateBool(json,'signingCertificateV2',True); CkJsonObject_UpdateBool(json,'signingTime',True); CkJsonObject_UpdateString(json,'signingAlgorithm','pkcs'); CkJsonObject_UpdateString(json,'hashAlgorithm','sha256'); // ----------------------------------------------------------- // The following JSON settings define the signature appearance. CkJsonObject_UpdateInt(json,'page',1); CkJsonObject_UpdateString(json,'appearance.y','top'); CkJsonObject_UpdateString(json,'appearance.x','left'); CkJsonObject_UpdateString(json,'appearance.fontScale','10.0'); CkJsonObject_UpdateString(json,'appearance.text[0]','Digitally signed by: cert_cn'); CkJsonObject_UpdateString(json,'appearance.text[1]','current_dt'); CkJsonObject_UpdateString(json,'appearance.text[2]','Hello 123 ABC'); // -------------------------------------------------------------- // Load the signing certificate. (Use your own certificate.) // Note: There are other methods for using a certificate on an HSM (smartcard or token) // or from other sources, such as a cloud HSM, a Windows installed certificate, // or other file formats. cert := CkCert_Create(); success := CkCert_LoadPfxFile(cert,'c:/myPfxFiles/myPdfSigningCert.pfx','pfxPassword'); if (success = False) then begin Memo1.Lines.Add(CkCert__lastErrorText(cert)); Exit; end; // Once we have the certificate object, tell the PDF object to use it for signing success := CkPdf_SetSigningCert(pdf,cert); if (success = False) then begin Memo1.Lines.Add(CkPdf__lastErrorText(pdf)); Exit; end; // Sign the PDF, creating the output file. outFilePath := 'c:/someDir/mySigned.pdf'; success := CkPdf_SignPdf(pdf,json,outFilePath); if (success = False) then begin Memo1.Lines.Add(CkPdf__lastErrorText(pdf)); Exit; end; Memo1.Lines.Add('Success.'); CkPdf_Dispose(pdf); CkJsonObject_Dispose(json); CkCert_Dispose(cert); end; |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.