ggstd 0.1.0

Partial implementation of Go standard library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Package md5 implements the MD5 hash algorithm as defined in RFC 1321.
//!
//! MD5 is cryptographically broken and should not be used for secure
//! applications.

mod md5;
mod md5block;

pub use md5::{sum, Digest, BLOCK_SIZE, SIZE};

#[cfg(test)]
mod md5_test;