run cargo fmt
This commit is contained in:
parent
35d8f04496
commit
3a71893711
3 changed files with 10 additions and 4 deletions
|
@ -94,7 +94,13 @@ impl<'a> CryptoReader<'a> {
|
||||||
/// Returns `true` if the data is encrypted using AE2.
|
/// Returns `true` if the data is encrypted using AE2.
|
||||||
pub fn is_ae2_encrypted(&self) -> bool {
|
pub fn is_ae2_encrypted(&self) -> bool {
|
||||||
#[cfg(feature = "aes-crypto")]
|
#[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"))]
|
#[cfg(not(feature = "aes-crypto"))]
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue