Reet-Kaur
Reet-Kaur
Looking at the code in ZipOutputStream.PutNextEntry(entry), it first checks ``` if (Password != null) { entry.IsCrypted = true; if (entry.Crc < 0) { entry.Flags |= 8; } } ``` and...
 This is really weird, the generated csv file is marked as Password protected = Yes , but when I open the file it doesn't ask me for a password....
I have hard-coded the password for my test. The ZipOutputStream.Password does get set correctly. Ihaven't set any .AESKeySize and the ZipEntry looks like this:  Does it look like that...
Thanks for your response. My old code worked. I had to do 2 things: 1. //zipStream.SetLevel(9); Comment the setLevel 2. entryAes.AESKeySize = 0; // I don't know why this is...