PowerBuilder
PowerBuilder
Use a Custom Set of Trusted Root Certificates
See more Certificates Examples
Demonstrates how to build a set of trusted root certificates to be used globally by all Chilkat classes.Chilkat PowerBuilder Downloads
integer li_rc
integer li_Success
oleobject loo_TrustedRoots
oleobject loo_Zip
oleobject loo_Entry
string ls_PemStr
oleobject loo_Cert
string ls_Pattern
integer li_BHasMoreEntries
li_Success = 0
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_TrustedRoots = create oleobject
li_rc = loo_TrustedRoots.ConnectToNewObject("Chilkat.TrustedRoots")
if li_rc < 0 then
destroy loo_TrustedRoots
MessageBox("Error","Connecting to COM object failed")
return
end if
// Indicate that we will NOT trust any pre-installed certificates on the system.
loo_TrustedRoots.TrustSystemCaRoots = 0
// Thawte is a certificate authority that provides a .zip download of their
// root CA certificates: https://www.thawte.com/roots/index.html
// The direct download link is: https://www.verisign.com/support/thawte-roots.zip
// Note: The above URLs are valid at the time of writing this example (29-May-2015).
// Assuming the .zip has already been downloaded, open it and load each .pem file into
// our trusted roots object.
loo_Zip = create oleobject
li_rc = loo_Zip.ConnectToNewObject("Chilkat.Zip")
// Open a .zip containing PEM files, among other things..
li_Success = loo_Zip.OpenZip("qa_data/certs/thawte-roots.zip")
if li_Success = 0 then
Write-Debug loo_Zip.LastErrorText
destroy loo_TrustedRoots
destroy loo_Zip
return
end if
loo_Entry = create oleobject
li_rc = loo_Entry.ConnectToNewObject("Chilkat.ZipEntry")
loo_Cert = create oleobject
li_rc = loo_Cert.ConnectToNewObject("Chilkat.Cert")
ls_Pattern = "*.pem"
li_BHasMoreEntries = loo_Zip.EntryMatching(ls_Pattern,loo_Entry)
do while li_BHasMoreEntries = 1
Write-Debug "Entry: " + loo_Entry.FileName
// Get the PEM of the CA cert:
ls_PemStr = loo_Entry.UnzipToString(0,"utf-8")
// Load it into a certificate object:
li_Success = loo_Cert.LoadPem(ls_PemStr)
if li_Success <> 1 then
Write-Debug loo_Cert.LastErrorText
end if
// Add it to the trusted roots.
loo_TrustedRoots.AddCert(loo_Cert)
li_BHasMoreEntries = loo_Entry.GetNextMatch(ls_Pattern)
loop
// Activate the trusted roots globally for all Chilkat objects.
// This call really shouldn't fail, so we're not checking the return value.
li_Success = loo_TrustedRoots.Activate()
destroy loo_TrustedRoots
destroy loo_Zip
destroy loo_Entry
destroy loo_Cert