This commit is contained in:
Chris Hennick 2023-05-10 16:34:57 -07:00
parent f17012ca63
commit cfa91e75b0
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -4,7 +4,7 @@
//! [https://courses.cs.ut.ee/MTAT.07.022/2015_fall/uploads/Main/dmitri-report-f15-16.pdf](https://courses.cs.ut.ee/MTAT.07.022/2015_fall/uploads/Main/dmitri-report-f15-16.pdf)
use std::fmt::{Debug, Formatter};
use std::hash::{Hash};
use std::hash::Hash;
use std::num::Wrapping;
/// A container to hold the current key state
@ -19,7 +19,7 @@ pub(crate) struct ZipCryptoKeys {
impl Debug for ZipCryptoKeys {
#[allow(unreachable_code)]
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
#[cfg(not(any(test,fuzzing)))]
#[cfg(not(any(test, fuzzing)))]
{
use std::collections::hash_map::DefaultHasher;
use std::hash::Hasher;
@ -27,9 +27,11 @@ impl Debug for ZipCryptoKeys {
self.hash(&mut t);
return f.write_fmt(format_args!("ZipCryptoKeys(hash {})", t.finish()));
}
#[cfg(any(test,fuzzing))]
return f.write_fmt(format_args!("ZipCryptoKeys({:#10x},{:#10x},{:#10x})",
self.key_0, self.key_1, self.key_2));
#[cfg(any(test, fuzzing))]
return f.write_fmt(format_args!(
"ZipCryptoKeys({:#10x},{:#10x},{:#10x})",
self.key_0, self.key_1, self.key_2
));
}
}