Dump full encryption key while testing or fuzzing
This commit is contained in:
parent
a963e9ff68
commit
9b0e620c50
1 changed files with 10 additions and 3 deletions
|
@ -18,10 +18,17 @@ pub(crate) struct ZipCryptoKeys {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Debug for ZipCryptoKeys {
|
impl Debug for ZipCryptoKeys {
|
||||||
|
#[allow(unreachable_code)]
|
||||||
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
||||||
let mut t = DefaultHasher::new();
|
#[cfg(not(any(test,fuzzing)))]
|
||||||
self.hash(&mut t);
|
{
|
||||||
f.write_fmt(format_args!("ZipCryptoKeys(hash {})", t.finish()))
|
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));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue