Thank you. I'm trying out the 45-day trial using the following code snippet:
AbstractFile file = new DiskFile(@"d:\mytest.zip");
if (file.Exists) { file.Delete(); }
ZipArchive archive = new ZipArchive(file);
archive.DefaultEncryptionMethod = EncryptionMethod.WinZipAes;
archive.DefaultEncryptionStrength = 256;
archive.DefaultDecryptionPassword = "This is a trial password";
AbstractFolder source = new DiskFolder(@"d:\temp\small");
source.CopyFilesTo(archive, true, true);
Strangely the resultant ZIP file is not encrypted and can be opened without supplying any password. Is anything missing from the code?