Module aws_smithy_checksums::http

source ·
Expand description

Checksum support for HTTP requests and responses.

Constants§

  • When a response has to be checksum-verified, we have to check possible headers until we find the header with the precalculated checksum. Because a service may send back multiple headers, we have to check them in order based on how fast each checksum is to calculate.

Statics§

Traits§

  • Checksum algorithms are use to validate the integrity of data. Structs that implement this trait can be used as checksum calculators. This trait requires Send + Sync because these checksums are often used in a threaded context.