diff --git a/src/read.rs b/src/read.rs index d06cf602..24e6fea1 100644 --- a/src/read.rs +++ b/src/read.rs @@ -1361,9 +1361,14 @@ pub fn read_zipfile_from_stream<'a, R: Read>(reader: &'a mut R) -> ZipResult(reader: &'a mut R) -> ZipResult> 8) as u8), version_made_by: version_made_by as u8, - encrypted, - using_data_descriptor, + encrypted: flags & 1 == 1, + using_data_descriptor: false, compression_method, compression_level: None, last_modified_time: DateTime::from_msdos(last_mod_date, last_mod_time), @@ -1421,13 +1426,6 @@ pub fn read_zipfile_from_stream<'a, R: Read>(reader: &'a mut R) -> ZipResult return Err(e), } - if encrypted { - return unsupported_zip_error("Encrypted files are not supported"); - } - if using_data_descriptor { - return unsupported_zip_error("The file length is not available in the local header"); - } - let limit_reader = (reader as &'a mut dyn Read).take(result.compressed_size); let result_crc32 = result.crc32;