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

VBScript 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

 

 

 

(VBScript) About RSA Public/Private Keys

This example provides some additional information for understanding public/private key pairs. In demonstrates how a private key is a superset of the public key. A public key contains the modulus and exponent. The matching private key also contains the modulus and exponent, but also contains the additional private key parts.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set outFile = fso.CreateTextFile("output.txt", True)

set cert = CreateObject("Chilkat_9_5_0.Cert")

' Load a digital certificate.
success = cert.LoadFromFile("digitalCert.cer")
If (success <> 1) Then
    outFile.WriteLine(cert.LastErrorText)
    WScript.Quit
End If

' A .cer file does not contain the private key.  It should contain
' the public key...
' pubKey is a Chilkat_9_5_0.PublicKey
Set pubKey = cert.ExportPublicKey()

' Let's have a look at it (in XML format).
outFile.WriteLine("Public Key from Certificate:")
outFile.WriteLine(pubKey.GetXml())

' An RSA public key consists of a modulus and exponent.

' An RSA private key includes both the modulus and exponent,
' as well as other "big" numbers: P, Q, D, etc.

' Let's load an RSA private key from a DER-encoded file:
set privKey = CreateObject("Chilkat_9_5_0.PrivateKey")

success = privKey.LoadAnyFormatFile("PrivateKey.key","")
If (success <> 1) Then
    outFile.WriteLine(privKey.LastErrorText)

    WScript.Quit
End If

' If this private key is the matching half to the public key from
' the certificate, then the modulus and exponent should
' be identical.  (Thus, a "private key" really contains both the public part as well as the private parts...).
outFile.WriteLine("Private Key from DER:")
outFile.WriteLine(privKey.GetXml())


outFile.Close

 

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