chksum-hash-sha2-256

Crates.iochksum-hash-sha2-256
lib.rschksum-hash-sha2-256
version0.0.1
sourcesrc
created_at2023-12-21 15:29:43.338179
updated_at2024-04-28 19:17:29.019013
descriptionAn implementation of SHA-2 256 hash algorithm for batch and stream computation.
homepage
repositoryhttps://github.com/chksum-rs/hash-sha2-256
max_upload_size
id1077064
size72,570
kgolawski (ventaquil)

documentation

README

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.

Commit count: 5

cargo fmt