| Crates.io | tiger |
| lib.rs | tiger |
| version | 0.3.0-rc.1 |
| created_at | 2016-12-16 11:03:12.416647+00 |
| updated_at | 2026-01-24 17:26:29.969729+00 |
| description | Tiger hash function |
| homepage | |
| repository | https://github.com/RustCrypto/hashes |
| max_upload_size | |
| id | 7625 |
| size | 37,804 |
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"));
// Hex-encode hash using https://docs.rs/base16ct
let hex_hash = base16ct::lower::encode_string(&hash);
assert_eq!(hex_hash, "4c8fbddae0b6f25832af45e7c62811bb64ec3e43691e9cc3");
Also, see the examples section in the RustCrypto/hashes readme.
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.