run cargo fmt

This commit is contained in:
Lireer 2022-01-25 20:57:27 +01:00
parent 35d8f04496
commit 3a71893711
3 changed files with 10 additions and 4 deletions

View file

@ -121,11 +121,11 @@ pub struct AesReaderValid<R: Read> {
impl<R: Read> Read for AesReaderValid<R> {
/// 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.

View file

@ -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,

View file

@ -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
}