rs_sha224 0.1.1

`rs_sha224` is a Rust implementation of the SHA-224 cryptographic hash algorithm, part of the larger `rs_ssl` project. This package provides SHA-224 hashing functionality in a standalone manner, ideal for when only SHA-224 is required. Alternatively, for those seeking a comprehensive set of cryptographic functions, this same algorithm is included within the broader `rs_ssl` library bundle. The focus of `rs_sha224` and the larger project is on performance, safety, and openness, with a commitment to ongoing maintenance and enhancement.
Documentation
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3

[[package]]
name = "rs_hasher_ctx"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe78177c7341fe563c2bad34ca98c62c563a466a9483f33390f4870846f284ee"
dependencies = [
 "rs_internal_hasher",
 "rs_internal_state",
 "rs_n_bit_words",
]

[[package]]
name = "rs_internal_hasher"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f2946487378a6822dc9227a3bca974a8cc2dcbf81ce771ecf32fe926a16a628"
dependencies = [
 "rs_internal_state",
 "rs_n_bit_words",
]

[[package]]
name = "rs_internal_state"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c6fa05ba9006811ae6395bd757a3a1ff073f16c8e215c15c6fed8381367396ed"
dependencies = [
 "rs_n_bit_words",
]

[[package]]
name = "rs_n_bit_words"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "817e81a86609661d6c42a7b23c4cd84efab8cf5b2db777b1e253ab3ee5486a28"

[[package]]
name = "rs_sha224"
version = "0.1.1"
dependencies = [
 "rs_hasher_ctx",
 "rs_internal_hasher",
 "rs_internal_state",
 "rs_n_bit_words",
]