#hash #hashing #checksum #sha384 #sha2-384

chksum-hash-sha2-384

An implementation of SHA-2 384 hash algorithm for batch and stream computation

2 releases

new 0.0.1 Apr 28, 2024
0.0.0 Dec 21, 2023

#119 in #checksum

Download history 326/week @ 2024-01-06 582/week @ 2024-01-13 289/week @ 2024-01-20 283/week @ 2024-01-27 1535/week @ 2024-02-03 1999/week @ 2024-02-10 2189/week @ 2024-02-17 2108/week @ 2024-02-24 2234/week @ 2024-03-02 2525/week @ 2024-03-09 2116/week @ 2024-03-16 2020/week @ 2024-03-23 340/week @ 2024-03-30 664/week @ 2024-04-06 501/week @ 2024-04-13 445/week @ 2024-04-20

2,039 downloads per month
Used in 6 crates (2 directly)

MIT license

70KB
1.5K SLoC

chksum-hash-sha2-384

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

An implementation of SHA-2 384 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-sha2-384 = "0.0.1"

Alternatively, you can use the cargo add subcommand:

cargo add chksum-hash-sha2-384

Usage

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.

License

This crate is licensed under the MIT License.

Dependencies

~0.3–0.8MB
~19K SLoC