18 releases

Uses old Rust 2015

0.7.0 Nov 1, 2019
0.6.1 Dec 14, 2018
0.6.0 Nov 3, 2018
0.3.7 Jan 30, 2018
0.1.1 Jul 4, 2015

#37 in Algorithms

Download history 191839/week @ 2023-11-20 256917/week @ 2023-11-27 264873/week @ 2023-12-04 235967/week @ 2023-12-11 240833/week @ 2023-12-18 89875/week @ 2023-12-25 184482/week @ 2024-01-01 236261/week @ 2024-01-08 256384/week @ 2024-01-15 269268/week @ 2024-01-22 258307/week @ 2024-01-29 267357/week @ 2024-02-05 294548/week @ 2024-02-12 302444/week @ 2024-02-19 358786/week @ 2024-02-26 337952/week @ 2024-03-04

1,304,839 downloads per month
Used in 1,322 crates (422 directly)

Apache-2.0/MIT

18KB
370 lines

MD5 Package Documentation Build

The package provides the MD5 hash function.

Example

let digest = md5::compute(b"abcdefghijklmnopqrstuvwxyz");
assert_eq!(format!("{:x}", digest), "c3fcd3d76192e4007dfb496cca67e13b");

Security Warning

The package is provided for the purposes of interoperability with protocols and systems that mandate the use of MD5. However, MD5 should be considered cryptographically broken and unsuitable for further use. Collision attacks against MD5 are both practical and trivial, and theoretical attacks against MD5 have been found.

RFC6151 advises no new protocols to be designed with any MD5-based constructions, including HMAC-MD5.

Contribution

Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.

No runtime deps

Features