#md5 #hash #digest #hashing #checksum

chksum-hash-md5

An implementation of MD5 hash algorithm for batch and stream computation

2 releases

new 0.0.1 Apr 28, 2024
0.0.0 Dec 21, 2023

#37 in #md5

Download history 328/week @ 2024-01-06 587/week @ 2024-01-13 374/week @ 2024-01-20 322/week @ 2024-01-27 1615/week @ 2024-02-03 2069/week @ 2024-02-10 2278/week @ 2024-02-17 2214/week @ 2024-02-24 2344/week @ 2024-03-02 2651/week @ 2024-03-09 2236/week @ 2024-03-16 2049/week @ 2024-03-23 428/week @ 2024-03-30 817/week @ 2024-04-06 598/week @ 2024-04-13 548/week @ 2024-04-20

2,482 downloads per month
Used in 5 crates (2 directly)

MIT license

45KB
776 lines

chksum-hash-md5

GitHub Build docs.rs MSRV deps.rs unsafe forbidden LICENSE

An implementation of MD5 hash algorithm for batch and stream computation.

Setup

To use this crate, add the following entry to your Cargo.toml file in the dependencies section:

[dependencies]
chksum-hash-md5 = "0.0.1"

Alternatively, you can use the cargo add subcommand:

cargo add chksum-hash-md5

Usage

Use the hash function for batch digest calculation.

use chksum_hash_md5 as md5;

let digest = md5::hash(b"example data");
assert_eq!(
    digest.to_hex_lowercase(),
    "5c71dbb287630d65ca93764c34d9aa0d"
);

Use the default function to create a hash instance for stream digest calculation.

use chksum_hash_md5 as md5;

let digest = md5::default()
    .update("example")
    .update(b"data")
    .update([0, 1, 2, 3])
    .digest();
assert_eq!(
    digest.to_hex_lowercase(),
    "a1a9f435f547ec4cffd8050c454f632a"
);

For more usage examples, refer to the documentation available at docs.rs.

License

This crate is licensed under the MIT License.

Dependencies

~0.3–0.8MB
~19K SLoC