Uses of Class
software.amazon.awssdk.core.checksums.Algorithm
-
Packages that use Algorithm Package Description software.amazon.awssdk.core.checksums software.amazon.awssdk.core.interceptor software.amazon.awssdk.core.internal.async software.amazon.awssdk.core.internal.util -
-
Uses of Algorithm in software.amazon.awssdk.core.checksums
Methods in software.amazon.awssdk.core.checksums that return Algorithm Modifier and Type Method Description AlgorithmChecksumSpecs. algorithm()static AlgorithmAlgorithm. fromValue(String value)Deprecated.static AlgorithmAlgorithm. valueOf(String name)Deprecated.Returns the enum constant of this type with the specified name.static Algorithm[]Algorithm. values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.Methods in software.amazon.awssdk.core.checksums that return types with arguments of type Algorithm Modifier and Type Method Description List<Algorithm>ChecksumSpecs. responseValidationAlgorithms()Methods in software.amazon.awssdk.core.checksums with parameters of type Algorithm Modifier and Type Method Description ChecksumSpecs.BuilderChecksumSpecs.Builder. algorithm(Algorithm algorithm)static SdkChecksumSdkChecksum. forAlgorithm(Algorithm algorithm)Deprecated.Gets the Checksum based on the required Algorithm.Method parameters in software.amazon.awssdk.core.checksums with type arguments of type Algorithm Modifier and Type Method Description ChecksumSpecs.BuilderChecksumSpecs.Builder. responseValidationAlgorithms(List<Algorithm> responseValidationAlgorithms) -
Uses of Algorithm in software.amazon.awssdk.core.interceptor
Fields in software.amazon.awssdk.core.interceptor with type parameters of type Algorithm Modifier and Type Field Description static ExecutionAttribute<Algorithm>SdkExecutionAttribute. HTTP_CHECKSUM_VALIDATION_ALGORITHMThe Algorithm used for checksum validation of a response. -
Uses of Algorithm in software.amazon.awssdk.core.internal.async
Methods in software.amazon.awssdk.core.internal.async with parameters of type Algorithm Modifier and Type Method Description ChecksumCalculatingAsyncRequestBody.BuilderChecksumCalculatingAsyncRequestBody.Builder. algorithm(Algorithm algorithm)Sets the checksum algorithm. -
Uses of Algorithm in software.amazon.awssdk.core.internal.util
Methods in software.amazon.awssdk.core.internal.util that return types with arguments of type Algorithm Modifier and Type Method Description static Pair<Algorithm,String>HttpChecksumUtils. getAlgorithmChecksumValuePair(SdkHttpResponse sdkHttpResponse, ChecksumSpecs resolvedChecksumSpecs)Loops through the Supported list of checksum for the operation, and gets the Header value for the checksum header.Methods in software.amazon.awssdk.core.internal.util with parameters of type Algorithm Modifier and Type Method Description static longChunkContentUtils. calculateChecksumTrailerLength(Algorithm algorithm, String headerName)Calculates the content length for a given algorithm and header name.static byte[]HttpChecksumUtils. computeChecksum(InputStream is, Algorithm algorithm)Computes the Checksum of the data in the given input stream and returns it as an array of bytes.
-