![]() |
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
(PureBasic) Sign PDF in the Cloud using Azure Key VaultSee more Signing in the Cloud ExamplesDemonstrates how to sign a PDF using Azure Key Vault. The signing of the hash happens in the Cloud on Azure Key Vault. Everything else involving the updating the PDF to add the signature happens locally within Chilkat. Note: This example requires Chilkat v9.5.0.96 or greater.
IncludeFile "CkCert.pb" IncludeFile "CkJsonObject.pb" IncludeFile "CkPdf.pb" Procedure ChilkatExample() ; This example requires the Chilkat API to have been previously unlocked. ; See Global Unlock Sample for sample code. pdf.i = CkPdf::ckCreate() If pdf.i = 0 Debug "Failed to create object." ProcedureReturn EndIf ; Load a PDF to be signed. success.i = CkPdf::ckLoadFile(pdf,"qa_data/pdf/helloWorld.pdf") If success = 0 Debug CkPdf::ckLastErrorText(pdf) CkPdf::ckDispose(pdf) ProcedureReturn EndIf ; Options for signing are specified in JSON. json.i = CkJsonObject::ckCreate() If json.i = 0 Debug "Failed to create object." ProcedureReturn EndIf ; Optionally create an LTV-enabled signature CkJsonObject::ckUpdateBool(json,"ltvOcsp",1) ; Define the appearance of the signature. CkJsonObject::ckUpdateInt(json,"page",1) CkJsonObject::ckUpdateString(json,"appearance.y","top") CkJsonObject::ckUpdateString(json,"appearance.x","left") CkJsonObject::ckUpdateString(json,"appearance.fontScale","10.0") CkJsonObject::ckUpdateString(json,"appearance.text[0]","Digitally signed by: cert_cn") CkJsonObject::ckUpdateString(json,"appearance.text[1]","current_dt") CkJsonObject::ckUpdateString(json,"appearance.text[2]","This is an LTV-enabled signature.") ; Load the certificate used for signing. The certificate's private key is stored in ; the Azure Key Vault. ; However, we still need the certificate locally (without private key). cert.i = CkCert::ckCreate() If cert.i = 0 Debug "Failed to create object." ProcedureReturn EndIf success = CkCert::ckLoadFromFile(cert,"qa_data/certs/myCert.cer") If success = 0 Debug CkCert::ckLastErrorText(cert) CkPdf::ckDispose(pdf) CkJsonObject::ckDispose(json) CkCert::ckDispose(cert) ProcedureReturn EndIf ; Here's a screenshot of our certificate with private key on Azure Key Vault: |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.