Expand description
An implementation of the SHA-1 cryptographic hash algorithm.
Usage
use hex_literal::hex;
use sha1::{Sha1, Digest};
// create a Sha1 object
let mut hasher = Sha1::new();
// process input message
hasher.update(b"hello world");
// acquire hash digest in the form of GenericArray,
// which in this case is equivalent to [u8; 20]
let result = hasher.finalize();
assert_eq!(result[..], hex!("2aae6c35c94fcfb415dbe95f408b9ce91ee846ed"));
Also see RustCrypto/hashes readme.
Re-exports
pub use digest;
Structs
Structure representing the state of a SHA-1 computation
Traits
The Digest
trait specifies an interface common for digest functions.