diff --git a/src/read.rs b/src/read.rs index 0bdd0529..3288b8cd 100644 --- a/src/read.rs +++ b/src/read.rs @@ -144,11 +144,11 @@ fn make_reader<'a>( reader: io::Take<&'a mut dyn io::Read>, password: Option<&[u8]>) -> ZipResult> { - + let reader = match password { None => CryptoReader::Plaintext(reader), - Some(password) => + Some(password) => { match ZipCryptoReader::new(reader, password).validate(crc32)? { @@ -157,7 +157,7 @@ fn make_reader<'a>( } } }; - + match compression_method { CompressionMethod::Stored => @@ -353,7 +353,7 @@ impl ZipArchive }; self.by_index_internal(index, password) } - + /// Get a contained file by index, decrypt with given password pub fn by_index_decrypt<'a>(&'a mut self, file_number: usize, password: &[u8]) -> ZipResult> { @@ -365,12 +365,12 @@ impl ZipArchive { self.by_index_internal(file_number, None) } - + fn by_index_internal<'a>(&'a mut self, file_number: usize, mut password: Option<&[u8]>) -> ZipResult> { if file_number >= self.files.len() { return Err(ZipError::FileNotFound); } let ref mut data = self.files[file_number]; - + if password == None { if data.encrypted @@ -623,7 +623,7 @@ impl<'a> Drop for ZipFile<'a> { // Get the inner `Take` reader so all decryption, decompression and CRC calculation is skipped. let innerreader = ::std::mem::replace(&mut self.reader, ZipFileReader::NoReader); - let mut reader : std::io::Take<&mut dyn std::io::Read> = + let mut reader : std::io::Take<&mut dyn std::io::Read> = innerreader.into_inner(); loop { diff --git a/src/result.rs b/src/result.rs index 04a38087..6fc5aaac 100644 --- a/src/result.rs +++ b/src/result.rs @@ -23,10 +23,10 @@ pub enum ZipError /// The requested file could not be found in the archive FileNotFound, - + /// No password was given but the data is encrypted PasswordRequired, - + /// The given password is wrong InvalidPassword, }