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
(AutoIt) Creates an AES Encrypted Zip with One File UnencryptedDemonstrates how to create an AES encrypted zip, but also containing one file that is not encrypted. The way we do it is to first create an AES encrypted zip in the usual way, and then we append an unecrypted file to it.
; This example requires the Chilkat API to have been previously unlocked. ; See Global Unlock Sample for sample code. $oZip = ObjCreate("Chilkat.Zip") Local $bSuccess = $oZip.NewZip("qa_output/aes_with_one_unencrypted.zip") If ($bSuccess <> True) Then ConsoleWrite($oZip.LastErrorText & @CRLF) Exit EndIf ; Set properties to indicate that the Zip should be ; AES encrypted. ; A value of 4 indicates WinZip compatible AES encryption. $oZip.Encryption = 4 ; Key length can be 128, 192, or 256 bits. $oZip.EncryptKeyLength = 128 ; Set the password for AES encryption: $oZip.EncryptPassword = "myPassword" ; Exclude the file helloWorld.txt ; This file will be added unencrypted to the .zip $oSaExclusions = ObjCreate("Chilkat.StringArray") $oSaExclusions.Append("helloWorld.txt") $oZip.SetExclusions $oSaExclusions $oZip.VerboseLogging = True ; Add a directory tree to be zipped. Local $bRecurse = True ; Append from a directory relative to our current working directory. $oZip.AppendFromDir = "qa_data/filesToZip" $bSuccess = $oZip.AppendFiles("*",$bRecurse) If ($bSuccess <> True) Then ConsoleWrite($oZip.LastErrorText & @CRLF) Exit EndIf ConsoleWrite($oZip.LastErrorText & @CRLF) ; Writes qa_output/aes_with_one_unencrypted.zip $bSuccess = $oZip.WriteZipAndClose() If ($bSuccess <> True) Then ConsoleWrite($oZip.LastErrorText & @CRLF) Exit EndIf ; ---------------------------------------------- ; At this point, we have an encrypted .zip with all ; files except for helloWorld.txt. ; We'll add helloWorld.txt (unencrypted) to the .zip we just created. ; The NewZip method only initializes the Zip object -- it does ; not create or write a .zip file. $bSuccess = $oZip.NewZip("notUsed.zip") If ($bSuccess <> True) Then ConsoleWrite($oZip.LastErrorText & @CRLF) Exit EndIf $oSaExclusions.Clear $oZip.SetExclusions $oSaExclusions ; No encryption. $oZip.Encryption = 0 $oZip.AppendFromDir = "qa_data/filesToZip" ; Add a reference to a file. This is the file that will ; be added to a already-existing .zip. Local $bSaveExtraPath = False $bSuccess = $oZip.AppendOneFileOrDir("helloWorld.txt",$bSaveExtraPath) If ($bSuccess <> True) Then ConsoleWrite($oZip.LastErrorText & @CRLF) Exit EndIf ; Appends the contents of the zip object to the preExisting.zip ; zip archive. preExisting.zip is opened, and the files ; referenced by this zip object are streamed in, compressed, ; and appended to the end of the archive. $bSuccess = $oZip.QuickAppend("qa_output/aes_with_one_unencrypted.zip") If ($bSuccess <> True) Then ConsoleWrite($oZip.LastErrorText & @CRLF) Exit EndIf ConsoleWrite("Success!" & @CRLF) |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.