Sign PDF in PAdES (ETSI EN 319 142) standard
See more PDF Signatures Examples
Chilkat can sign PDF's to satisfy any of the different PDF signing levels, such as:PAdES-Baseline: This is the basic level of PAdES compliance. It specifies the minimum requirements for creating an advanced electronic signature in a PDF document. PAdES-Baseline signatures typically include the signature itself, signer's identity information, and certificate validation data.
PAdES-B: PAdES-B is an extension of PAdES-Baseline that adds support for time-stamping the signature. Time-stamping ensures that the signature remains valid even after the expiration of the signer's certificate.
PAdES-LTV (Long-Term Validation), PAdES-LTA: PAdES-LTV adds additional features to ensure the long-term validity and integrity of signatures. It includes mechanisms for embedding validation-related information, such as certificate revocation status and validation policies, directly into the PDF document. This allows the signature to be validated even if the signer's certificate has expired or been revoked.
PAdES-T: PAdES-T is similar to PAdES-B, but it requires the use of a secure time-stamp from a trusted time-stamping authority. This provides additional assurance of the signature's time validity.
PAdES-C: PAdES-C adds support for multiple signers to sign the same PDF document sequentially or concurrently.
PAdES-X: PAdES-X is an extension of PAdES-Baseline that adds support for the use of external signature policies. External signature policies define additional requirements and constraints for creating and validating signatures.
Chilkat PowerBuilder Downloads
integer li_rc
integer li_Success
oleobject loo_Pdf
oleobject loo_Json
oleobject loo_Cert
string ls_OutFilePath
li_Success = 0
loo_Pdf = create oleobject
li_rc = loo_Pdf.ConnectToNewObject("Chilkat.Pdf")
if li_rc < 0 then
destroy loo_Pdf
MessageBox("Error","Connecting to COM object failed")
return
end if
// Load a PDF to be signed.
li_Success = loo_Pdf.LoadFile("c:/someDir/my.pdf")
if li_Success = 0 then
Write-Debug loo_Pdf.LastErrorText
destroy loo_Pdf
return
end if
// Options for signing are specified in JSON.
loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")
// ---------------------------------------------------------------------
// The JSON signing attributes are what controls the level of
// PAdES signature produced (i.e. PAdES-LTV, PAdES-B-LTA, etc)
//
// The best way to know what attributes to provide, and the values for
// for each attribute, is to find an already signed PDF that meets your
// requirements, and pass it to Chilkat's online tool at Generate PDF Signing Code
// The online tool will analyze the signed PDF and will generate code with the
// JSON signing attributes that will produce a signed PDF with the same features.
loo_Json.UpdateString("subFilter","/ETSI.CAdES.detached")
loo_Json.UpdateBool("signingCertificateV2",1)
loo_Json.UpdateString("signingAlgorithm","pkcs")
loo_Json.UpdateString("hashAlgorithm","sha256")
// -----------------------------------------------------------
// The following JSON settings define the signature appearance.
loo_Json.UpdateInt("page",1)
loo_Json.UpdateString("appearance.y","top")
loo_Json.UpdateString("appearance.x","left")
loo_Json.UpdateString("appearance.fontScale","10.0")
loo_Json.UpdateString("appearance.text[0]","Digitally signed by: cert_cn")
loo_Json.UpdateString("appearance.text[1]","current_dt")
loo_Json.UpdateString("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.
loo_Cert = create oleobject
li_rc = loo_Cert.ConnectToNewObject("Chilkat.Cert")
li_Success = loo_Cert.LoadPfxFile("c:/myPfxFiles/myPdfSigningCert.pfx","pfxPassword")
if li_Success = 0 then
Write-Debug loo_Cert.LastErrorText
destroy loo_Pdf
destroy loo_Json
destroy loo_Cert
return
end if
// Once we have the certificate object, tell the PDF object to use it for signing
li_Success = loo_Pdf.SetSigningCert(loo_Cert)
if li_Success = 0 then
Write-Debug loo_Pdf.LastErrorText
destroy loo_Pdf
destroy loo_Json
destroy loo_Cert
return
end if
// Sign the PDF, creating the output file.
ls_OutFilePath = "c:/someDir/mySigned.pdf"
li_Success = loo_Pdf.SignPdf(loo_Json,ls_OutFilePath)
if li_Success = 0 then
Write-Debug loo_Pdf.LastErrorText
destroy loo_Pdf
destroy loo_Json
destroy loo_Cert
return
end if
Write-Debug "Success."
destroy loo_Pdf
destroy loo_Json
destroy loo_Cert