Skip to content

Latest commit

 

History

History

tiger

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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.

Minimum Supported Rust Version

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.

SemVer Policy

  • All on-by-default features of this library are covered by SemVer
  • MSRV is considered exempt from SemVer as noted above

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.