aws_smithy_checksums/
body.rs

1/*
2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6//! HTTP body-wrappers that calculate and validate checksums.
7
8pub mod cache;
9pub mod calculate;
10pub mod validate;
11
12pub use cache::ChecksumCache;