Pure Rust implementation of the Tiger cryptographic hash algorithms.
Tiger2 is a variant of the original Tiger with a small padding tweak.
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"));
Also, see the examples section in the RustCrypto/hashes readme.
Rust 1.74 or higher.
Minimum supported Rust version can be changed in the future, but it will be done with a minor version bump.
- All on-by-default features of this library are covered by SemVer
- MSRV is considered exempt from SemVer as noted above
The crate is licensed under either of:
at your option.
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.