Skip to main content

osom_lib_hashes/sha2/sha2_256/
mod.rs

1//! Implements the 256-bit variant of `SHA-2` algorithm.
2
3#![allow(non_camel_case_types)]
4
5mod sha2_256_shared;
6
7pub mod platform;
8pub mod portable;