Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

PowerBuilder Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(PowerBuilder) Trust Specific Root CA Certificates

Demonstrates how to trust specific root CA certificates and none others.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

integer li_rc
oleobject loo_TRoots
oleobject loo_CaCert
integer li_Success
oleobject loo_Http

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

// This example will trust the Amazon root CA certificates provided at 
// https://www.amazontrust.com/repository/

// I've previously downloaded the root CA certificates to DER format.
// Add each to the Chilkat TrustedRoots singleton object.

loo_TRoots = create oleobject
li_rc = loo_TRoots.ConnectToNewObject("Chilkat_9_5_0.TrustedRoots")
if li_rc < 0 then
    destroy loo_TRoots
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_CaCert = create oleobject
li_rc = loo_CaCert.ConnectToNewObject("Chilkat_9_5_0.Cert")

li_Success = loo_CaCert.LoadFromFile("qa_data/certs/aws_root_ca/AmazonRootCA1.cer")
if li_Success = 0 then
    Write-Debug loo_CaCert.LastErrorText
    destroy loo_TRoots
    destroy loo_CaCert
    return
end if

li_Success = loo_TRoots.AddCert(loo_CaCert)

// Continue with the others.
// For brevity, we're not checking return values for success/failure.
li_Success = loo_CaCert.LoadFromFile("qa_data/certs/aws_root_ca/AmazonRootCA2.cer")
li_Success = loo_TRoots.AddCert(loo_CaCert)

li_Success = loo_CaCert.LoadFromFile("qa_data/certs/aws_root_ca/AmazonRootCA3.cer")
li_Success = loo_TRoots.AddCert(loo_CaCert)

li_Success = loo_CaCert.LoadFromFile("qa_data/certs/aws_root_ca/AmazonRootCA4.cer")
li_Success = loo_TRoots.AddCert(loo_CaCert)

li_Success = loo_CaCert.LoadFromFile("qa_data/certs/aws_root_ca/SFSRootCAG2.cer")
li_Success = loo_TRoots.AddCert(loo_CaCert)

// Indicate we don't want to automatically trust the operating system's installed root CA certificates.
// On a Windows operating system, this would be the registry-based CA certificate stores. 
// On a Linux system, this could be /etc/ssl/certs/ca-certificates.crt, if it exists.
loo_TRoots.TrustSystemCaRoots = 0

// Activate the trusted roots object.
// Once activated, all Chilkat objects that use TLS connections (HTTP, REST, Socket, MailMan, IMAP, FTP, etc.)
// will fail the TLS handshake if the server certificate is not verified and rooted with one of our explicitly trusted root certificates.
li_Success = loo_TRoots.Activate()

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")

// Note: We also need to explicitly indicate that server certificates are to be verified.
loo_Http.RequireSslCertVerify = 1

// For example, the following should fail because www.chilkatsoft.com's server certificate is not rooted in one of the explicitly trusted root CA certs.
li_Success = loo_Http.Download("https://www.chilkatsoft.com/helloWorld.txt","qa_output/helloWorld.txt")
if li_Success <> 1 then
    // The above Download should fail.
    Write-Debug loo_Http.LastErrorText

    // There should be a message in the LastErrorText indicating that we were "Unable to build certificate chain to root.."
end if

// However, we should be able to make TLS connections to good.sca1a.amazontrust.com
li_Success = loo_Http.Download("https://good.sca1a.amazontrust.com/","qa_output/valid.html")
if li_Success <> 1 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_TRoots
    destroy loo_CaCert
    destroy loo_Http
    return
end if

// We can still examine the LastErrorText and we'll find this message within:  
// "The public key was successfully validated against the public key of the explicitly trusted root cert."
Write-Debug loo_Http.LastErrorText

Write-Debug "Success!"


destroy loo_TRoots
destroy loo_CaCert
destroy loo_Http

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.