cargo fmt run

This commit is contained in:
Jackson Sandland
2018-05-11 11:38:52 -07:00
parent 458c27c6e9
commit 250830ade9
15 changed files with 174 additions and 56 deletions

View File

@@ -1,7 +1,7 @@
//! The `hash` module provides functions for creating SHA-256 hashes.
use generic_array::GenericArray;
use generic_array::typenum::U32;
use generic_array::GenericArray;
use sha2::{Digest, Sha256};
pub type Hash = GenericArray<u8, U32>;