![]() |
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
(Swift) 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.
func chilkatTest() { var success: Bool = false let pdf = CkoPdf()! // Load a PDF to be signed. success = pdf.loadFile("c:/someDir/my.pdf") if success == false { print("\(pdf.lastErrorText!)") return } // Options for signing are specified in JSON. let json = CkoJsonObject()! json.update("subFilter", value: "/ETSI.CAdES.detached") json.updateBool("signingCertificateV2", value: true) json.updateBool("signingTime", value: true) json.update("signingAlgorithm", value: "pkcs") json.update("hashAlgorithm", value: "sha256") // ----------------------------------------------------------- // The following JSON settings define the signature appearance. json.updateInt("page", value: 1) json.update("appearance.y", value: "top") json.update("appearance.x", value: "left") json.update("appearance.fontScale", value: "10.0") json.update("appearance.text[0]", value: "Digitally signed by: cert_cn") json.update("appearance.text[1]", value: "current_dt") json.update("appearance.text[2]", value: "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. let cert = CkoCert()! success = cert.loadPfxFile("c:/myPfxFiles/myPdfSigningCert.pfx", password: "pfxPassword") if success == false { print("\(cert.lastErrorText!)") return } // Once we have the certificate object, tell the PDF object to use it for signing success = pdf.setSigning(cert) if success == false { print("\(pdf.lastErrorText!)") return } // Sign the PDF, creating the output file. var outFilePath: String? = "c:/someDir/mySigned.pdf" success = pdf.sign(json, outFilePath: outFilePath) if success == false { print("\(pdf.lastErrorText!)") return } print("Success.") } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.