nettle 7.5.0

Rust bindings for the Nettle cryptographic library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Broken hash functions.
//!
//! The algorithms in this module are known to be broken or too short to be secure. Only use them
//! for legacy applications.

mod sha1;
pub use self::sha1::Sha1;
mod md2;
pub use self::md2::Md2;
mod md4;
pub use self::md4::Md4;
mod md5;
pub use self::md5::Md5;
mod ripemd160;
pub use self::ripemd160::Ripemd160;
mod gosthash94;
pub use self::gosthash94::GostHash94;