Crates.io | chksum-hash-md5 |
lib.rs | chksum-hash-md5 |
version | 0.0.1 |
source | src |
created_at | 2023-12-21 15:27:50.219251 |
updated_at | 2024-04-28 19:17:10.463171 |
description | An implementation of MD5 hash algorithm for batch and stream computation. |
homepage | |
repository | https://github.com/chksum-rs/hash-md5 |
max_upload_size | |
id | 1077060 |
size | 58,139 |
An implementation of MD5 hash algorithm for batch and stream computation.
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
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.
This crate is licensed under the MIT License.