Dump full encryption key while testing or fuzzing

This commit is contained in:
Chris Hennick 2023-05-10 16:30:59 -07:00
parent a963e9ff68
commit 9b0e620c50
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -18,10 +18,17 @@ pub(crate) struct ZipCryptoKeys {
}
impl Debug for ZipCryptoKeys {
#[allow(unreachable_code)]
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
let mut t = DefaultHasher::new();
self.hash(&mut t);
f.write_fmt(format_args!("ZipCryptoKeys(hash {})", t.finish()))
#[cfg(not(any(test,fuzzing)))]
{
let mut t = DefaultHasher::new();
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));
}
}