Home
last modified time | relevance | path

Searched refs:algorithmChecksumPair (Results 1 – 1 of 1) sorted by relevance

/external/aws-sdk-java-v2/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/interceptor/
DHttpChecksumValidationInterceptor.java62 Pair<Algorithm, String> algorithmChecksumPair = getAlgorithmChecksumValuePair( in modifyHttpResponseContent() local
64 updateContextWithChecksumValidationStatus(executionAttributes, algorithmChecksumPair); in modifyHttpResponseContent()
66 if (algorithmChecksumPair != null && context.responseBody().isPresent()) { in modifyHttpResponseContent()
68 … context.responseBody().get(), SdkChecksum.forAlgorithm(algorithmChecksumPair.left()), in modifyHttpResponseContent()
69 algorithmChecksumPair.right())); in modifyHttpResponseContent()
81 …Pair<Algorithm, String> algorithmChecksumPair = getAlgorithmChecksumValuePair(context.httpResponse… in modifyAsyncHttpResponseContent() local
83 updateContextWithChecksumValidationStatus(executionAttributes, algorithmChecksumPair); in modifyAsyncHttpResponseContent()
84 if (algorithmChecksumPair != null && context.responsePublisher().isPresent()) { in modifyAsyncHttpResponseContent()
86 … SdkChecksum.forAlgorithm(algorithmChecksumPair.left()), in modifyAsyncHttpResponseContent()
87 algorithmChecksumPair.right())); in modifyAsyncHttpResponseContent()
[all …]