ggstd/crypto/sha256/
mod.rs

1// Copyright 2023 The rust-ggstd authors.
2// Copyright 2009 The Go Authors. All rights reserved.
3// Use of this source code is governed by a BSD-style
4// license that can be found in the LICENSE file.
5
6//! Package sha256 implements the SHA224 and SHA256 hash algorithms as defined
7//! in FIPS 180-4.
8
9mod sha256;
10mod sha256block;
11
12pub use sha256::{sum224, sum256, Digest, BLOCK_SIZE, SIZE, SIZE224};
13
14#[cfg(test)]
15mod sha256_test;