Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Swift 3,4,5...) Stream a file to compression to encryption to an output file.Runs a chain of streams to read a source file, compress, encrypt, and write an output file.
func chilkatTest() { // This requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. var success: Bool // Initialize the compression object. let compress = CkoCompression()! compress.algorithm = "deflate" // Initialize the encryption object. let crypt = CkoCrypt2()! crypt.cryptAlgorithm = "chacha20" crypt.keyLength = 256 crypt.encodingMode = "hex" var ivHex: String? = "000000000000000000000002" crypt.setEncodedIV(ivHex, encoding: "hex") crypt.initialCount = 42 var keyHex: String? = "1c9240a5eb55d38af333888604f6b5f0473917c1402b80099dca5cbc207075c0" crypt.setEncodedKey(keyHex, encoding: "hex") // Setup the streams. // streamC is for compression let streamC = CkoStream()! // streamE is for encryption let streamE = CkoStream()! // The source for the compressor is a file. streamC.sourceFile = "qa_data/hamlet.xml" // The source for the encryptor is the output of the compressor stream. success = streamE.setSourceStream(streamC) // The sink for the encryptor is the output file. streamE.sinkFile = "qa_output/compressed_encrypted.dat" // Start the compression and encryption streams in background threads.. var taskC: CkoTask? = compress.compressStreamAsync(streamC) var taskE: CkoTask? = crypt.encryptStreamAsync(streamE) success = taskC!.run() success = taskE!.run() // Let the streams run until finished. // Let's make sure the background task finished. // It should already be the case that the task is finished. while ((taskE!.finished != true) || (taskC!.finished != true)) { taskE!.sleepMs(20) } // check for success.. if taskE!.taskSuccess != true { print("async encryption failed:") print("\(taskE!.resultErrorText!)") success = false } // check for success.. if taskC!.taskSuccess != true { print("async compression failed:") print("\(taskC!.resultErrorText!)") success = false } taskE = nil taskC = nil // Load the file that was produced and decrypt/decompress to verify. let binData = CkoBinData()! success = binData.loadFile("qa_output/compressed_encrypted.dat") success = crypt.decryptBd(binData) success = compress.decompressBd(binData) // binData should contain the original data.. success = binData.writeFile("qa_output/original_hamlet.xml") print("Finished.") } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.