Don't try to encrypt directories

Not overriding this works fine for ZipCrypto since it doesn't need to
write any extra data, but AES encrypted files need to store more
metadata even for zero-byte files.

Signed-off-by: Johannes Löthberg <johannes.loethberg@elokon.com>
This commit is contained in:
Johannes Löthberg 2024-05-06 11:52:33 +02:00
parent d824fc2088
commit 97ddf84546
No known key found for this signature in database
GPG key ID: FEBC5EC99474C681
2 changed files with 2 additions and 1 deletions

View file

@ -36,7 +36,7 @@ pub struct FuzzTestCase<'k> {
flush_on_finish_file: bool,
}
fn do_operation<T>(
fn do_operation<'k, T>(
writer: &mut zip::ZipWriter<T>,
operation: &FileOperation<'k>,
abort: bool,

View file

@ -1287,6 +1287,7 @@ impl<W: Write + Seek> ZipWriter<W> {
}
*options.permissions.as_mut().unwrap() |= 0o40000;
options.compression_method = Stored;
options.encrypt_with = None;
let name_as_string = name.into();
// Append a slash to the filename if it does not end with it.