rs_sha3_224
rs_sha3_224
is a Rust crate implementing the SHA-3_224 cryptographic hash algorithm. This permutation-based hash algorithm is designed for compatibility with Rust's libcore in a #![no_std]
context, allowing it to operate as a standalone crate for specialized use cases and also function within a #![no_std]
, #![no_alloc]
environment, rendering it suitable for systems where dynamic memory allocation is not feasible.
This implementation of SHA-3224 is compliant with the Federal Information Processing Standards (FIPS) Publication 202[^1]. As per the National Institute of Standards and Technology (NIST) guidelines, SHA-3224 is recommended for several use cases:
"SHA-3 provides security strengths against preimage, second preimage and collision attacks [...] at the 112-bit security level."
Given this advice, NIST recommendations imply that SHA-3_224 is suitable for the following contexts:
Beyond these specific recommendations, SHA-3_224 could also find application in:
These points should be carefully considered, given your overall security objectives and risk tolerance.
For access to a comprehensive range of cryptographic functions, rs_sha3_224
can be utilized as part of the rs_ssl
library bundle.
Below are steps to use the rs_sha3_224
crate in your Rust projects:
Add the following line to your Cargo.toml
under the [dependencies]
section:
toml
rs_sha3_224 = "0.1.*"
Use the functions provided by the rs_sha3_224
module in your code. Here's an example of how to create a SHA-3_224 hash from a string:
```rust use rssha3224::{HasherContext, Sha3_224Hasher};
let mut sha3224hasher = Sha3224Hasher::default(); sha3_224hasher.write(b"your string here");
let u64result = sha3224hasher.finish(); let bytesresult = HasherContext::finish(&mut sha3224hasher); asserteq!(u64result, 0xDDF2FCD38ED7C536); asserteq!(format!("{bytesresult:02x}"), "ddf2fcd38ed7c536146be476795619b9232eee08d83a94d40ebd9f79"); asserteq!(format!("{bytesresult:02X}"), "DDF2FCD38ED7C536146BE476795619B9232EEE08D83A94D40EBD9F79"); asserteq!( bytesresult, [ 0xDD, 0xF2, 0xFC, 0xD3, 0x8E, 0xD7, 0xC5, 0x36, 0x14, 0x6B, 0xE4, 0x76, 0x79, 0x56, 0x19, 0xB9, 0x23, 0x2E, 0xEE, 0x08, 0xD8, 0x3A, 0x94, 0xD4, 0x0E, 0xBD, 0x9F, 0x79 ] ) ```
For a more detailed exploration of rs_sha3_224
, an overview of other available cryptographic functions, and an introduction to the broader rs_ssl
project, please consult the RustySSL project page on crates.io.
Potential contributors are encouraged to consult the contribution guidelines on our GitHub page.
This project is licensed under GPL-2.0-only.
Note: The references have been provided as per the best knowledge as of Jun 02, 2023.