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

chksum-hash-sha2-224

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

2 releases

0.0.1 Apr 28, 2024
0.0.0 Dec 21, 2023

#6 in #sha-224

Download history 822/week @ 2024-11-16 1002/week @ 2024-11-23 573/week @ 2024-11-30 605/week @ 2024-12-07 763/week @ 2024-12-14 237/week @ 2024-12-21 274/week @ 2024-12-28 528/week @ 2025-01-04 912/week @ 2025-01-11 793/week @ 2025-01-18 824/week @ 2025-01-25 665/week @ 2025-02-01 939/week @ 2025-02-08 528/week @ 2025-02-15 611/week @ 2025-02-22 587/week @ 2025-03-01

2,743 downloads per month
Used in 7 crates (2 directly)

MIT license

56KB
1K SLoC

chksum-hash-sha2-224

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

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

Alternatively, you can use the cargo add subcommand:

cargo add chksum-hash-sha2-224

Usage

Use the hash function for batch digest calculation.

use chksum_hash_sha2_224 as sha2_224;

let digest = sha2_224::hash(b"example data");
assert_eq!(
    digest.to_hex_lowercase(),
    "90382cbfda2656313ad61fd74b32ddfa4bcc118f660bd4fba9228ced"
);

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

use chksum_hash_sha2_224 as sha2_224;

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

For more usage examples, refer to the documentation available at docs.rs.

License

This crate is licensed under the MIT License.

Dependencies

~215–680KB
~16K SLoC