Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PowerBuilder) Create P7M Using Pre-Installed Windows CertificateDemonstrates how to sign a file creating a .p7m file as output. The .p7m contains the signed contents of the original file. It can be verified and restored by calling VerifyP7M. This example is for Windows only. It automatically searches and locates the desired certificate in the Current User or Local Machine certificate stores. (The certificate must have been pre-installed on the Windows machine, and it must have the private key available. The private key can be located on a USB Authentication Token / Smart Card. If so, then Chilkat *should* automatically use the private key located on the device.)
integer li_rc oleobject loo_Crypt string ls_CertSubjectCN oleobject loo_Cert integer li_Success string ls_InFile string ls_OutputFile // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Crypt = create oleobject // Use "Chilkat_9_5_0.Crypt2" for versions of Chilkat < 10.0.0 li_rc = loo_Crypt.ConnectToNewObject("Chilkat.Crypt2") if li_rc < 0 then destroy loo_Crypt MessageBox("Error","Connecting to COM object failed") return end if ls_CertSubjectCN = "Matt" loo_Cert = create oleobject // Use "Chilkat_9_5_0.Cert" for versions of Chilkat < 10.0.0 li_rc = loo_Cert.ConnectToNewObject("Chilkat.Cert") // Locate and load the certificate by the common name (subject CN). // This searches the Windows registry-based Current User and Local Machine // certificate stores for the certificate. li_Success = loo_Cert.LoadByCommonName(ls_CertSubjectCN) if li_Success <> 1 then Write-Debug "Failed to find certificate." destroy loo_Crypt destroy loo_Cert return end if // Make sure a private key is available. if loo_Cert.HasPrivateKey() <> 1 then Write-Debug "This certificate does not have a private key located in the Windows protected store, or on a USB device." destroy loo_Crypt destroy loo_Cert return end if // Specify the cert (and implicitly the private key) to be used for signing. li_Success = loo_Crypt.SetSigningCert(loo_Cert) // ----------------------------------------------------------------------------------------- // Also see Chilkat's online tool to examine a .p7m and generate code to duplicate the .p7m // ----------------------------------------------------------------------------------------- // We can sign any type of file, creating a .p7m as output: ls_InFile = "qa_data/pdf/fishing.pdf" ls_OutputFile = "qa_output/fishing.pdf.p7m" li_Success = loo_Crypt.CreateP7M(ls_InFile,ls_OutputFile) if li_Success <> 1 then Write-Debug loo_Crypt.LastErrorText destroy loo_Crypt destroy loo_Cert return end if // Verify and restore the original file: li_Success = loo_Crypt.SetVerifyCert(loo_Cert) ls_InFile = ls_OutputFile ls_OutputFile = "qa_output/restored.pdf" li_Success = loo_Crypt.VerifyP7M(ls_InFile,ls_OutputFile) if li_Success = 0 then Write-Debug loo_Crypt.LastErrorText destroy loo_Crypt destroy loo_Cert return end if Write-Debug "Success!" destroy loo_Crypt destroy loo_Cert |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.