tiger

Crates.iotiger
lib.rstiger
version0.3.0-rc.1
created_at2016-12-16 11:03:12.416647+00
updated_at2026-01-24 17:26:29.969729+00
descriptionTiger hash function
homepage
repositoryhttps://github.com/RustCrypto/hashes
max_upload_size
id7625
size37,804
hashes (github:rustcrypto:hashes)

documentation

https://docs.rs/tiger

README

RustCrypto: Tiger

crate Docs Apache2/MIT licensed Rust Version Project Chat Build Status

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"));

// 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.

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.

Commit count: 653

cargo fmt