#hash #digest #hashing #sha-256 #checksum #sha2-256

chksum-hash-sha2-256

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

2 releases

0.0.1 Apr 28, 2024
0.0.0 Dec 21, 2023

#16 in #sha256

Download history 1955/week @ 2024-02-14 2531/week @ 2024-02-21 2196/week @ 2024-02-28 2450/week @ 2024-03-06 2516/week @ 2024-03-13 2432/week @ 2024-03-20 1003/week @ 2024-03-27 528/week @ 2024-04-03 886/week @ 2024-04-10 407/week @ 2024-04-17 603/week @ 2024-04-24 514/week @ 2024-05-01 463/week @ 2024-05-08 432/week @ 2024-05-15 598/week @ 2024-05-22 618/week @ 2024-05-29

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

MIT license

58KB
1K SLoC

chksum-hash-sha2-256

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

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

Alternatively, you can use the cargo add subcommand:

cargo add chksum-hash-sha2-256

Usage

Use the hash function for batch digest calculation.

use chksum_hash_sha2_256 as sha2_256;

let digest = sha2_256::hash(b"example data");
assert_eq!(
    digest.to_hex_lowercase(),
    "44752f37272e944fd2c913a35342eaccdd1aaf189bae50676b301ab213fc5061"
);

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

use chksum_hash_sha2_256 as sha2_256;

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

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