PowerBuilder
PowerBuilder
Create P7M Using Pre-Installed Windows Certificate
See more Digital Signatures Examples
Demonstrates 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.)
Chilkat PowerBuilder Downloads
integer li_rc
integer li_Success
oleobject loo_Crypt
string ls_CertSubjectCN
oleobject loo_Cert
string ls_InFile
string ls_OutputFile
li_Success = 0
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Crypt = create oleobject
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
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