Crates.io | chksum-hash-sha2-384 |
lib.rs | chksum-hash-sha2-384 |
version | 0.0.1 |
source | src |
created_at | 2023-12-21 15:38:06.016204 |
updated_at | 2024-04-28 19:17:33.519483 |
description | An implementation of SHA-2 384 hash algorithm for batch and stream computation. |
homepage | |
repository | https://github.com/chksum-rs/hash-sha2-384 |
max_upload_size | |
id | 1077083 |
size | 85,471 |
An implementation of SHA-2 384 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-sha2-384 = "0.0.1"
Alternatively, you can use the cargo add
subcommand:
cargo add chksum-hash-sha2-384
Use the hash
function for batch digest calculation.
use chksum_hash_sha2_384 as sha2_384;
let digest = sha2_384::hash(b"example data");
assert_eq!(
digest.to_hex_lowercase(),
"12ecdfd463a85a301b7c29a43bf4b19cdfc6e5e86a5f40396aa6ae3368a7e5b0ed31f3bef2eb3071577ba610b4ed1cb8"
);
Use the default
function to create a hash instance for stream digest calculation.
use chksum_hash_sha2_384 as 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 is licensed under the MIT License.