rs_sha512_256
rs_sha512_256
is a Rust crate implementing the SHA-512/256 cryptographic hash algorithm. Configured for compatibility with Rust's libcore within a #![no_std]
context, it operates as a standalone crate for specialized use cases and is also compatible with a #![no_std]
, #![no_alloc]
environment, rendering it suitable for systems where dynamic memory allocation is untenable.
This implementation of SHA-512/256 is compliant with the Federal Information Processing Standards (FIPS) Publication 180-4[^1]. In line with the National Institute of Standards and Technology (NIST) guidelines, SHA-512/256 is recommended for several use cases:
"SHA-512/256 provides 128 bits of security against collision attacks and, therefore, is suitable for functions requiring a hash length of 128 bits."
Given this advice, NIST recommendations imply that SHA-512/256 is suitable for the following contexts:
Beyond these specific recommendations, SHA-512/256 could also find application in:
Given your overall security objectives and risk tolerance, these points should be carefully considered.
For access to a comprehensive range of cryptographic functions, rs_sha512_256
can be utilized as part of the rs_ssl
library bundle.
Below are steps to use the rs_sha512_256
crate in your Rust projects:
Add the following line to your Cargo.toml
under the [dependencies]
section:
toml
rs_sha512_256 = "0.1.*"
Use the functions provided by the rs_sha512_256
module in your code. Here's an example of how to create a SHA-512/256 hash from a string:
```rust use rssha512256::{HasherContext, Sha512_256Hasher};
let mut sha512256hasher = Sha512256Hasher::default(); sha512_256hasher.write(b"your string here");
let u64result = sha512256hasher.finish(); let bytesresult = HasherContext::finish(&mut sha512256hasher); asserteq!(u64result, 0xD6F2B480B2185883); asserteq!(format!("{bytesresult:02x}"), "d6f2b480b21858837024cd2d4823c7baf48529d3688d407c7ef35a1f783c0b57"); asserteq!(format!("{bytesresult:02X}"), "D6F2B480B21858837024CD2D4823C7BAF48529D3688D407C7EF35A1F783C0B57"); asserteq!( bytesresult, [ 0xD6, 0xF2, 0xB4, 0x80, 0xB2, 0x18, 0x58, 0x83, 0x70, 0x24, 0xCD, 0x2D, 0x48, 0x23, 0xC7, 0xBA, 0xF4, 0x85, 0x29, 0xD3, 0x68, 0x8D, 0x40, 0x7C, 0x7E, 0xF3, 0x5A, 0x1F, 0x78, 0x3C, 0x0B, 0x57 ] ) ```
For a more detailed exploration of rs_sha512_256
, 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.