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

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