Uses of Interface
software.amazon.awssdk.http.auth.aws.internal.signer.Checksummer
-
Packages that use Checksummer Package Description software.amazon.awssdk.http.auth.aws.internal.signer software.amazon.awssdk.http.auth.aws.internal.signer.util -
-
Uses of Checksummer in software.amazon.awssdk.http.auth.aws.internal.signer
Classes in software.amazon.awssdk.http.auth.aws.internal.signer that implement Checksummer Modifier and Type Class Description classFlexibleChecksummerA "flexible" implementation of a checksummer.classPrecomputedSha256ChecksummerAn implementation of a checksummer that simply passes along a computed value as a checksum.Methods in software.amazon.awssdk.http.auth.aws.internal.signer that return Checksummer Modifier and Type Method Description static ChecksummerChecksummer. create()Get a default implementation of a checksummer, which calculates the SHA-256 checksum and places it in the x-amz-content-sha256 header.static ChecksummerChecksummer. forFlexibleChecksum(String precomputedSha256, ChecksumAlgorithm checksumAlgorithm)Get a flexible checksummer that performs two checksums: the given checksum-algorithm and a precomputed checksum from the given checksum string.static ChecksummerChecksummer. forFlexibleChecksum(ChecksumAlgorithm checksumAlgorithm)Get a flexible checksummer that performs two checksums: the given checksum-algorithm and the SHA-256 checksum.static ChecksummerChecksummer. forNoOp()static ChecksummerChecksummer. forPrecomputed256Checksum(String precomputedSha256)Get a precomputed checksummer which places the precomputed checksum to the x-amz-content-sha256 header. -
Uses of Checksummer in software.amazon.awssdk.http.auth.aws.internal.signer.util
Methods in software.amazon.awssdk.http.auth.aws.internal.signer.util that return Checksummer Modifier and Type Method Description static ChecksummerChecksumUtil. checksummer(BaseSignRequest<?,? extends AwsCredentialsIdentity> request, Boolean isPayloadSigningOverride)
-