Reformat
This commit is contained in:
parent
f17012ca63
commit
cfa91e75b0
1 changed files with 7 additions and 5 deletions
|
@ -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)
|
//! [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::fmt::{Debug, Formatter};
|
||||||
use std::hash::{Hash};
|
use std::hash::Hash;
|
||||||
use std::num::Wrapping;
|
use std::num::Wrapping;
|
||||||
|
|
||||||
/// A container to hold the current key state
|
/// 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()));
|
return f.write_fmt(format_args!("ZipCryptoKeys(hash {})", t.finish()));
|
||||||
}
|
}
|
||||||
#[cfg(any(test, fuzzing))]
|
#[cfg(any(test, fuzzing))]
|
||||||
return f.write_fmt(format_args!("ZipCryptoKeys({:#10x},{:#10x},{:#10x})",
|
return f.write_fmt(format_args!(
|
||||||
self.key_0, self.key_1, self.key_2));
|
"ZipCryptoKeys({:#10x},{:#10x},{:#10x})",
|
||||||
|
self.key_0, self.key_1, self.key_2
|
||||||
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue