aws / aws-sdk-cpp

AWS SDK for C++
Apache License 2.0
1.96k stars 1.05k forks source link

fix s3 flex checksums for bad memory access #2916

Closed sbiscigl closed 5 months ago

sbiscigl commented 5 months ago

Description of changes:

Currently our S3 integration tests will emit a valgrind warning for using unitialized memory when using a "bad" pre-calculated checksum that is not of Base64 format. When you execute the code

const auto badDecoded = HashingUtils::Base64Decode("If he came back and wanted you?");
const auto encodedAgain = HashingUtils::Base64Encode(badDecoded);

you will get a valgrind warning. This is due to a bug in our base64 implementation. I fix this in this case by using the CRT implementation of Base64 that fixes this issue. Going forward it would be recommended to use the CRT implentation and not the SDK implementation.

Check all that applies:

Check which platforms you have built SDK on to verify the correctness of this PR.

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.