Update generic_array

Warning: this may have performance implications.
This commit is contained in:
Greg Fitzgerald
2018-06-18 17:28:28 -07:00
committed by Greg Fitzgerald
parent 1c97bf50b6
commit 410272ee1d
2 changed files with 5 additions and 2 deletions

View File

@@ -10,7 +10,10 @@ pub type Hash = GenericArray<u8, U32>;
pub fn hash(val: &[u8]) -> Hash {
let mut hasher = Sha256::default();
hasher.input(val);
hasher.result()
// At the time of this writing, the sha2 library is stuck on an old version
// of generic_array (0.9.0). Decouple ourselves with a clone to our version.
GenericArray::clone_from_slice(hasher.result().as_slice())
}
/// Return the hash of the given hash extended with the given value.