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
@ -28,8 +28,10 @@ impl Debug for ZipCryptoKeys {
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));
return f.write_fmt(format_args!(
"ZipCryptoKeys({:#10x},{:#10x},{:#10x})",
self.key_0, self.key_1, self.key_2
));
}
}