S3 TLS Config
#3334
-
How to set custom pem private key and certificate for Aws::S3::S3Client? |
Beta Was this translation helpful? Give feedback.
Answered by
Voldemat
Mar 7, 2025
Replies: 1 comment 2 replies
-
https://docs.aws.amazon.com/sdk-for-cpp/v1/developer-guide/client-config.html please refer to the section |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Found a way to set it in curl:
curl_easy_setopt(curl, CURLOPT_SSLKEY_BLOB, key);
curl_easy_setopt(curl, CURLOPT_SSLCERT_BLOB, cert);