diff --git a/src/aes.rs b/src/aes.rs index bbf30a8b..4aabccd0 100644 --- a/src/aes.rs +++ b/src/aes.rs @@ -121,11 +121,11 @@ pub struct AesReaderValid { impl Read for AesReaderValid { /// This implementation does not fulfill all requirements set in the trait documentation. - /// + /// /// ```txt /// "If an error is returned then it must be guaranteed that no bytes were read." /// ``` - /// + /// /// Whether this applies to errors that occur while reading the encrypted data depends on the /// underlying reader. If the error occurs while verifying the HMAC, the reader might become /// practically unusable, since its position after the error is not known. diff --git a/src/compression.rs b/src/compression.rs index 4b7a52cd..6f634a46 100644 --- a/src/compression.rs +++ b/src/compression.rs @@ -25,7 +25,7 @@ pub enum CompressionMethod { #[cfg(feature = "bzip2")] Bzip2, /// Encrypted using AES. - /// + /// /// The actual compression method has to be taken from the AES extra data field /// or from `ZipFileData`. Aes, diff --git a/src/read.rs b/src/read.rs index e5a84c48..ff0e755c 100644 --- a/src/read.rs +++ b/src/read.rs @@ -94,7 +94,13 @@ impl<'a> CryptoReader<'a> { /// Returns `true` if the data is encrypted using AE2. pub fn is_ae2_encrypted(&self) -> bool { #[cfg(feature = "aes-crypto")] - return matches!(self, CryptoReader::Aes { vendor_version: AesVendorVersion::Ae2, .. }); + return matches!( + self, + CryptoReader::Aes { + vendor_version: AesVendorVersion::Ae2, + .. + } + ); #[cfg(not(feature = "aes-crypto"))] false }