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
uncategorized

 

 

 

(VBScript) Compress and Encrypt a Large File (Low and Constant Memory Footprint)

See more Compression Examples

Demonstrates how to compress and encrypt a large file such that the memory footprint remains low and constant.

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

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)

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

set compress = CreateObject("Chilkat_9_5_0.Compression")
compress.Algorithm = "deflate"

' Set encryption params.
' The possible values are the same as for the corresponding properties in the Chilkat Crypt2 class/object.
' The encoded IV and Key must be specified as hex.
set json = CreateObject("Chilkat_9_5_0.JsonObject")
success = json.UpdateString("cryptAlgorithm","aes")
success = json.UpdateString("cipherMode","cbc")
success = json.UpdateInt("keyLength",128)
success = json.UpdateInt("paddingScheme",0)
success = json.UpdateString("encodedIV","000102030405060708090A0B0C0D0E0F")
success = json.UpdateString("encodedKey","000102030405060708090A0B0C0D0E0F")

' Do file-to-file compression+encryption in a single call.
inPath = "qa_data/largeFile.dat"
outPath = "c:/temp/qa_output/compressed_encrypted.dat"
success = compress.CompressEncryptFile(json,inPath,outPath)
If (success = 0) Then
    outFile.WriteLine(compress.LastErrorText)
    WScript.Quit
End If

' We can do file-to-file decrypt/decompress like this:
inPath2 = outPath
outPath2 = "c:/temp/qa_output/restored.dat"
success = compress.DecryptDecompressFile(json,inPath2,outPath2)
If (success = 0) Then
    outFile.WriteLine(compress.LastErrorText)
    WScript.Quit
End If

' Note: The above decrypt + decompress is the equivalent of doing the same in these two steps:
set crypt = CreateObject("Chilkat_9_5_0.Crypt2")
crypt.CryptAlgorithm = "aes"
crypt.CipherMode = "cbc"
crypt.KeyLength = 128
crypt.PaddingScheme = 0
crypt.SetEncodedIV "000102030405060708090A0B0C0D0E0F","hex"
crypt.SetEncodedKey "000102030405060708090A0B0C0D0E0F","hex"

decryptedPath = "c:/temp/qa_output/decrypted.dat"
success = crypt.CkDecryptFile(inPath2,decryptedPath)
If (success = 0) Then
    outFile.WriteLine(crypt.LastErrorText)
    WScript.Quit
End If

outPath3 = "c:/temp/qa_output/restored_in_two_steps.dat"
success = compress.DecompressFile(decryptedPath,outPath3)
If (success = 0) Then
    outFile.WriteLine(compress.LastErrorText)
    WScript.Quit
End If

outFile.WriteLine("Success.")

outFile.Close

 

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