| Crates.io | chksum-hash-sha2-224 |
| lib.rs | chksum-hash-sha2-224 |
| version | 0.0.1 |
| created_at | 2023-12-21 15:29:00.304795+00 |
| updated_at | 2024-04-28 19:17:24.551013+00 |
| description | An implementation of SHA-2 224 hash algorithm for batch and stream computation. |
| homepage | |
| repository | https://github.com/chksum-rs/hash-sha2-224 |
| max_upload_size | |
| id | 1077062 |
| size | 70,448 |
An implementation of SHA-2 224 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-224 = "0.0.1"
Alternatively, you can use the cargo add subcommand:
cargo add chksum-hash-sha2-224
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.
This crate is licensed under the MIT License.