Sample code for 30+ languages & platforms
PowerBuilder

Create CAdES p7m using Azure Key Vault to Sign in the Cloud

See more Signing in the Cloud Examples

Demonstrates how to create a CAdES p7m, using Azure Key Vault. The signing of the hash happens in the Cloud on Azure Key Vault. Everything else regarding the creation of CAdES happens locally within Chilkat.

Note: This example requires Chilkat v9.5.0.96 or greater.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Cert
oleobject loo_JsonAzure
oleobject loo_Crypt
oleobject loo_SignedAttrs
string ls_InputXmlPath
string ls_OutputP7mPath

li_Success = 0

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

// 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).
loo_Cert = create oleobject
li_rc = loo_Cert.ConnectToNewObject("Chilkat.Cert")
if li_rc < 0 then
    destroy loo_Cert
    MessageBox("Error","Connecting to COM object failed")
    return
end if
li_Success = loo_Cert.LoadFromFile("qa_data/certs/myCert.cer")
if li_Success = 0 then
    Write-Debug loo_Cert.LastErrorText
    destroy loo_Cert
    return
end if

// Here's a screenshot of our certificate with private key on Azure Key Vault:
// (image:https://example-code.com/images/azure_key_vault.jpg/endImage)

// To sign using the Azure Key Vault, 
// add the following lines of code to specify your authentication credentials,
// and the name of the certificate w/ private key on the Azure server to be used.
loo_JsonAzure = create oleobject
li_rc = loo_JsonAzure.ConnectToNewObject("Chilkat.JsonObject")

// Set the "service" equal to "azure_keyvault" to tell Chilkat to use Azure Key Vault for signing.
loo_JsonAzure.UpdateString("service","azure_keyvault")
loo_JsonAzure.UpdateString("client_id","APP_ID")
loo_JsonAzure.UpdateString("client_secret","APP_PASSWORD")
loo_JsonAzure.UpdateString("tenant_id","TENANT_ID")
// In the above screenshot, our vault name is "kvchilkat".  You will use your vault name.
loo_JsonAzure.UpdateString("vault_name","VAULT_NAME")
// In the above screenshot, our cert name is "ChilkatTest1".  You will use your cert name.
loo_JsonAzure.UpdateString("cert_name","CERT_NAME")
// In the above screenshot, our cert version is "63b94a23389546ecbc8eb6208a1bef37".  You will use your cert version.
loo_JsonAzure.UpdateString("cert_version","CERT_VERSION")
li_Success = loo_Cert.SetCloudSigner(loo_JsonAzure)

loo_Crypt = create oleobject
li_rc = loo_Crypt.ConnectToNewObject("Chilkat.Crypt2")

li_Success = loo_Crypt.SetSigningCert(loo_Cert)
if li_Success = 0 then
    Write-Debug loo_Crypt.LastErrorText
    destroy loo_Cert
    destroy loo_JsonAzure
    destroy loo_Crypt
    return
end if

// The CadesEnabled property applies to all methods that create PKCS7 signatures. 
// To create a CAdES-BES signature, set this property equal to true.
loo_Crypt.CadesEnabled = 1

loo_Crypt.HashAlgorithm = "sha256"

loo_SignedAttrs = create oleobject
li_rc = loo_SignedAttrs.ConnectToNewObject("Chilkat.JsonObject")

loo_SignedAttrs.UpdateInt("contentType",1)
loo_SignedAttrs.UpdateInt("signingTime",1)
loo_SignedAttrs.UpdateInt("messageDigest",1)
loo_SignedAttrs.UpdateInt("signingCertificateV2",1)
loo_Crypt.SigningAttributes = loo_SignedAttrs.Emit()

// You can sign any type of file..
ls_InputXmlPath = "qa_data/e-Invoice.xml"
ls_OutputP7mPath = "qa_output/signed.p7m"

// Create the CAdES-BES attached signature, which contains the original data.
// Chilkat will build the .p7m locally, but will (internally) use ARSS
// to do the RSA signing remotely.
li_Success = loo_Crypt.CreateP7M(ls_InputXmlPath,ls_OutputP7mPath)
if li_Success = 0 then
    Write-Debug loo_Crypt.LastErrorText
    destroy loo_Cert
    destroy loo_JsonAzure
    destroy loo_Crypt
    destroy loo_SignedAttrs
    return
end if

Write-Debug "Success."


destroy loo_Cert
destroy loo_JsonAzure
destroy loo_Crypt
destroy loo_SignedAttrs