aws / aws-sdk-js-v3

Modularized AWS SDK for JavaScript.
Apache License 2.0
2.98k stars 560 forks source link

feat(client-sqs): add option to prevent md5 computation #5953

Closed kuhe closed 3 months ago

kuhe commented 3 months ago

Issue

n/a

Description

This adds the option to set md5=false in SQS to shut off its MD5 message checksum customization. This is applicable to FIPS where md5 algorithm is avoided.

import { SQS } from "@aws-sdk/client-sqs";

new SQS({
  md5: false
});

Testing

new unit test

github-actions[bot] commented 3 months ago

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs and link to relevant comments in this thread.