Expand description
§RustCrypto: Tiger
Pure Rust implementation of the Tiger cryptographic hash algorithms.
Tiger2 is a variant of the original Tiger with a small padding tweak.
§Examples
use tiger::{Tiger, Digest};
use hex_literal::hex;
let mut hasher = Tiger::new();
hasher.update(b"hello world");
let hash = hasher.finalize();
assert_eq!(hash, hex!("4c8fbddae0b6f25832af45e7c62811bb64ec3e43691e9cc3"));See the digest crate docs for additional examples.
§License
The crate is licensed under either of:
at your option.
§Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, without any additional terms or conditions.
Re-exports§
pub use digest;
Modules§
- block_
api - Block-level types
Structs§
Traits§
- Digest
- Convenience wrapper trait covering functionality of cryptographic hash functions with fixed output size.