Hi,
we created a zip archive with aes256 encryption and a password with special chars like €,ü,ö etc. It creates the zip correctly but if you then want to unzip the file with winrar or winzip it always says wrong password.
Seems like a encoding issue.
Is there any workaround.
Here is the source code in c#
using (ZipArchive zip = new ZipArchive(ZipFileToCreate, ArchiveOpenMode.Create))
{
// set the Password first
zip.Password = "tüst";
//zip.Password = "€urope";
// optionally change the default Encryption algorithm
zip.EncryptionAlgorithm =EncryptionAlgorithm.Aes256;
// now add files
zip.Add(FileToZip);
}