rs_whirlpool 0.1.2

The rs_whirlpool crate is currently a placeholder for an upcoming cryptographic hashing algorithm implementation in Rust. This algorithm is currently under development and will be released as soon as possible. Please note that until it is available, the code will be configured to panic by default.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! # Whirlpool - `rs_whirlpool` - ISO/IEC 10118-3:2004
//!
//! **Important Note: This crate is still a work in progress and is not ready for consumption.**
//!
//! Whirlpool is a cryptographic hash function published by Vincent Rijmen and Paulo S. L. M. Barreto in 2000. It finds its applications in:
//! - Ensuring data integrity.
//! - Password hashing.
//! - Secure communication protocols like Transport Layer Security (TLS), Secure Shell (SSH), Internet Protocol Security (IPSec), etc.
//!
//! This crate implements Whirlpool as part of the [RustyShield](https://docs.rs/rs_shield/latest/rs_shield/) project.

#![no_std]