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

Tcl 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

 

 

 

(Tcl) Encrypt File in Chunks using AES CBC

Demonstrates how to use the FirstChunk/LastChunk properties to encrypt a file chunk-by-chunk.

Important This example requires Chilkat v9.5.0.68 or later.

Chilkat Tcl Extension Downloads

Chilkat Tcl Extension Downloads

load ./chilkat.dll

# This example requires the Chilkat Crypt API to have been previously unlocked.
# See Unlock Chilkat Crypt for sample code.

set crypt [new_CkCrypt2]

CkCrypt2_put_CryptAlgorithm $crypt "aes"
CkCrypt2_put_CipherMode $crypt "cbc"
CkCrypt2_put_KeyLength $crypt 128

CkCrypt2_SetEncodedKey $crypt "000102030405060708090A0B0C0D0E0F" "hex"
CkCrypt2_SetEncodedIV $crypt "000102030405060708090A0B0C0D0E0F" "hex"

set fileToEncrypt "qa_data/hamlet.xml"
set facIn [new_CkFileAccess]

set success [CkFileAccess_OpenForRead $facIn $fileToEncrypt]
if {$success != 1} then {
    puts "Failed to open file that is to be encrytped."
    delete_CkCrypt2 $crypt
    delete_CkFileAccess $facIn
    exit
}

set outputEncryptedFile "qa_output/hamlet.enc"
set facOutEnc [new_CkFileAccess]

set success [CkFileAccess_OpenForWrite $facOutEnc $outputEncryptedFile]
if {$success != 1} then {
    puts "Failed to encrypted output file."
    delete_CkCrypt2 $crypt
    delete_CkFileAccess $facIn
    delete_CkFileAccess $facOutEnc
    exit
}

# Let's encrypt in 10000 byte chunks.
set chunkSize 10000
set numChunks [CkFileAccess_GetNumBlocks $facIn $chunkSize]

CkCrypt2_put_FirstChunk $crypt 1
CkCrypt2_put_LastChunk $crypt 0

set bd [new_CkBinData]

set i 0
while {$i < $numChunks} {
    set i [expr $i + 1]
    if {$i == $numChunks} then {
        CkCrypt2_put_LastChunk $crypt 1
    }

    # Read the next chunk from the file.
    # The last chunk will be whatever amount remains in the file..
    CkBinData_Clear $bd
    CkFileAccess_FileReadBd $facIn $chunkSize $bd

    # Encrypt.
    CkCrypt2_EncryptBd $crypt $bd

    # Write the encrypted chunk to the output file.
    CkFileAccess_FileWriteBd $facOutEnc $bd 0 0

    CkCrypt2_put_FirstChunk $crypt 0
}

# Make sure both FirstChunk and LastChunk are restored to 1 after
# encrypting or decrypting in chunks.  Otherwise subsequent encryptions/decryptions
# will produce unexpected results.
CkCrypt2_put_FirstChunk $crypt 1
CkCrypt2_put_LastChunk $crypt 1

CkFileAccess_FileClose $facIn
CkFileAccess_FileClose $facOutEnc

# Decrypt the encrypted output file in a single call using CBC mode:
set decryptedFile "qa_output/hamlet_dec.xml"
set success [CkCrypt2_CkDecryptFile $crypt $outputEncryptedFile $decryptedFile]
# Assume success for the example..

# Compare the contents of the decrypted file with the original file:
set bSame [CkFileAccess_FileContentsEqual $facIn $fileToEncrypt $decryptedFile]
puts "bSame = $bSame"

delete_CkCrypt2 $crypt
delete_CkFileAccess $facIn
delete_CkFileAccess $facOutEnc
delete_CkBinData $bd

 

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