tiger 0.3.0-rc.2

Tiger hash function
Documentation
# RustCrypto: Tiger

[![crate][crate-image]][crate-link]
[![Docs][docs-image]][docs-link]
![Apache2/MIT licensed][license-image]
![Rust Version][rustc-image]
[![Project Chat][chat-image]][chat-link]
[![Build Status][build-image]][build-link]

Pure Rust implementation of the [Tiger] cryptographic hash algorithms.

Tiger2 is a variant of the original Tiger with a small padding tweak.

## Examples

```rust
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:

* [Apache License, Version 2.0]http://www.apache.org/licenses/LICENSE-2.0
* [MIT license]http://opensource.org/licenses/MIT

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.

[//]: # (badges)

[crate-image]: https://img.shields.io/crates/v/tiger.svg
[crate-link]: https://crates.io/crates/tiger
[docs-image]: https://docs.rs/tiger/badge.svg
[docs-link]: https://docs.rs/tiger/
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.85+-blue.svg
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260041-hashes
[build-image]: https://github.com/RustCrypto/hashes/actions/workflows/tiger.yml/badge.svg?branch=master
[build-link]: https://github.com/RustCrypto/hashes/actions/workflows/tiger.yml?query=branch:master

[//]: # (general links)

[Tiger]: https://en.wikipedia.org/wiki/Tiger_(hash_function)
[examples section]: https://github.com/RustCrypto/hashes#Examples