Storage mining fixups...

* Use IV to make unique identies
* Use hex! macro for hex literal and not string converted to u8 slice
* fix sha sampling to control init/end of sha state
This commit is contained in:
Stephen Akridge
2018-10-19 10:39:13 -07:00
committed by sakridge
parent 3b33150cfb
commit ead7f4287a
7 changed files with 130 additions and 50 deletions

View File

@@ -91,6 +91,10 @@ extern crate chrono;
extern crate clap;
extern crate dirs;
extern crate generic_array;
#[cfg(test)]
#[cfg(any(feature = "chacha", feature = "cuda"))]
#[macro_use]
extern crate hex_literal;
extern crate ipnetwork;
extern crate itertools;
extern crate libc;