Sample code for 30+ languages & platforms
PowerBuilder

DKIM Signature using Windows Current User Certificate Store

See more DKIM / DomainKey Examples

This is a Windows-specific example to load a certificate from the Current User (registry-based) certificate store, and then use the certificate's associated private key for a DKIM signature.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Cert
oleobject loo_PrivKey
oleobject loo_Dkim

li_Success = 0

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

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

// The LoadByCommonName method searches the Windows Local Machine and Current User 
// registry-based certificate stores for a certificate having the common name specified. 
// If found, the certificate is loaded and ready for use.
li_Success = loo_Cert.LoadByCommonName("My Certificate ABC")
if li_Success = 0 then
    Write-Debug loo_Cert.LastErrorText
    destroy loo_Cert
    return
end if

// The certificate must have an associated private key installed, and it must be a
// private key that has been marked "exportable" when it was originally installed.
if not loo_Cert.HasPrivateKey() then
    Write-Debug "This certificate does not have a private key available."
    destroy loo_Cert
    return
end if

loo_PrivKey = create oleobject
li_rc = loo_PrivKey.ConnectToNewObject("Chilkat.PrivateKey")

li_Success = loo_Cert.GetPrivateKey(loo_PrivKey)
if li_Success = 0 then
    Write-Debug loo_Cert.LastErrorText
    destroy loo_Cert
    destroy loo_PrivKey
    return
end if

loo_Dkim = create oleobject
li_rc = loo_Dkim.ConnectToNewObject("Chilkat.Dkim")

// Load the private key into the DKIM object:
li_Success = loo_Dkim.SetDkimPrivateKey(loo_PrivKey)
if li_Success = 0 then
    Write-Debug loo_Dkim.LastErrorText
    destroy loo_Cert
    destroy loo_PrivKey
    destroy loo_Dkim
    return
end if

// The private key has been loaded into the DKIM object.  See the other DKIM
// examples for guidance on how to create a DKIM signature...


destroy loo_Cert
destroy loo_PrivKey
destroy loo_Dkim