Bug fix: scope Hasher and DefaultHasher imports to the configs that use them

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

View file

@ -3,9 +3,8 @@
//! The following paper was used to implement the ZipCrypto algorithm:
//! [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::collections::hash_map::DefaultHasher;
use std::fmt::{Debug, Formatter};
use std::hash::{Hash, Hasher};
use std::hash::{Hash};
use std::num::Wrapping;
/// A container to hold the current key state
@ -22,6 +21,8 @@ impl Debug for ZipCryptoKeys {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
#[cfg(not(any(test,fuzzing)))]
{
use std::collections::hash_map::DefaultHasher;
use std::hash::Hasher;
let mut t = DefaultHasher::new();
self.hash(&mut t);
return f.write_fmt(format_args!("ZipCryptoKeys(hash {})", t.finish()));