Open
Description
While ZipArchive allows decryption of AES passwords from bytes, ZipWriter with FileOptions only allows for &str
password. This behavior is inconsistent, and incomplete. Zip files can be protected using bytes, not only readable (&str
) password.
The current implementation already allows for encryption using bytes, we only need to change the interface for FileOptions.
