Crates.io | chksum-hash |
lib.rs | chksum-hash |
version | 0.5.1 |
source | src |
created_at | 2022-03-01 17:36:29.922251 |
updated_at | 2024-04-28 20:27:07.996654 |
description | An implementation of hash algorithms for batch and stream computation. |
homepage | |
repository | https://github.com/chksum-rs/hash |
max_upload_size | |
id | 541686 |
size | 32,608 |
An implementation of hash algorithms 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 = "0.5.1"
Alternatively, you can use the cargo add
subcommand:
cargo add chksum-hash
Use the hash
function for batch digest calculation.
use chksum_hash::md5;
let digest = md5::hash(b"example data");
assert_eq!(
digest.to_hex_lowercase(),
"5c71dbb287630d65ca93764c34d9aa0d"
);
Use default
function to create hash instance for stream digest calculation.
use chksum_hash::sha2_384;
let digest = sha2_384::default()
.update("example")
.update(b"data")
.update([0, 1, 2, 3])
.digest();
assert_eq!(
digest.to_hex_lowercase(),
"ef0484e7424aa96c8f3d4910ac081d129b089435e4275b0cec9327a09959359e18c3ca55355fbc32968d20c85c379d86"
);
For more usage examples, refer to the documentation available at docs.rs.
This crate provides implementations for the following hash algorithms:
This crate is licensed under the MIT License.