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

Visual FoxPro 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

 

 

 

(Visual FoxPro) 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 ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

LOCAL loCrypt
LOCAL lcFileToEncrypt
LOCAL loFacIn
LOCAL lnSuccess
LOCAL lcOutputEncryptedFile
LOCAL loFacOutEnc
LOCAL lnChunkSize
LOCAL lnNumChunks
LOCAL loBd
LOCAL i
LOCAL lcDecryptedFile
LOCAL lnBSame

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

loCrypt = CreateObject('Chilkat_9_5_0.Crypt2')

loCrypt.CryptAlgorithm = "aes"
loCrypt.CipherMode = "cbc"
loCrypt.KeyLength = 128

loCrypt.SetEncodedKey("000102030405060708090A0B0C0D0E0F","hex")
loCrypt.SetEncodedIV("000102030405060708090A0B0C0D0E0F","hex")

lcFileToEncrypt = "qa_data/hamlet.xml"
loFacIn = CreateObject('Chilkat_9_5_0.FileAccess')
lnSuccess = loFacIn.OpenForRead(lcFileToEncrypt)
IF (lnSuccess <> 1) THEN
    ? "Failed to open file that is to be encrytped."
    RELEASE loCrypt
    RELEASE loFacIn
    CANCEL
ENDIF

lcOutputEncryptedFile = "qa_output/hamlet.enc"
loFacOutEnc = CreateObject('Chilkat_9_5_0.FileAccess')
lnSuccess = loFacOutEnc.OpenForWrite(lcOutputEncryptedFile)
IF (lnSuccess <> 1) THEN
    ? "Failed to encrypted output file."
    RELEASE loCrypt
    RELEASE loFacIn
    RELEASE loFacOutEnc
    CANCEL
ENDIF

* Let's encrypt in 10000 byte chunks.
lnChunkSize = 10000
lnNumChunks = loFacIn.GetNumBlocks(lnChunkSize)

loCrypt.FirstChunk = 1
loCrypt.LastChunk = 0

loBd = CreateObject('Chilkat_9_5_0.BinData')

i = 0
DO WHILE i < lnNumChunks
    i = i + 1
    IF (i = lnNumChunks) THEN
        loCrypt.LastChunk = 1
    ENDIF

    * Read the next chunk from the file.
    * The last chunk will be whatever amount remains in the file..
    loBd.Clear()
    loFacIn.FileReadBd(lnChunkSize,loBd)

    * Encrypt.
    loCrypt.EncryptBd(loBd)

    * Write the encrypted chunk to the output file.
    loFacOutEnc.FileWriteBd(loBd,0,0)

    loCrypt.FirstChunk = 0
ENDDO

* Make sure both FirstChunk and LastChunk are restored to 1 after
* encrypting or decrypting in chunks.  Otherwise subsequent encryptions/decryptions
* will produce unexpected results.
loCrypt.FirstChunk = 1
loCrypt.LastChunk = 1

loFacIn.FileClose()
loFacOutEnc.FileClose()

* Decrypt the encrypted output file in a single call using CBC mode:
lcDecryptedFile = "qa_output/hamlet_dec.xml"
lnSuccess = loCrypt.CkDecryptFile(lcOutputEncryptedFile,lcDecryptedFile)
* Assume success for the example..

* Compare the contents of the decrypted file with the original file:
lnBSame = loFacIn.FileContentsEqual(lcFileToEncrypt,lcDecryptedFile)
? "bSame = " + STR(lnBSame)

RELEASE loCrypt
RELEASE loFacIn
RELEASE loFacOutEnc
RELEASE loBd


 

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