AWS SDK C++ Signature V2

310 Views Asked by At

I am just wondering is there any way to specify Signature V2 authorization mechanism in aws-sdk-cpp? I use S3Client

I patched sdk by hardcoding V2 format in aws-sdk-cpp-core/source/auth/AWSAuthSigner.cpp

ss << "AWS" << " " << credentials.GetAWSAccessKeyId() << ":" << finalSignature;

But how I can do this right?

1

There are 1 best solutions below

0
On

Sigv2 is deprecated in favor of Sigv4. The only service that still requires sigv2 is SDB, which you probably shouldn't be writing new code against.

Is this for SDB or another service?