Enforcing a minimum TLS version in the Amazon SDK for C++ - Amazon SDK for C++
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Enforcing a minimum TLS version in the Amazon SDK for C++

To increase security when communicating with Amazon services, you should configure SDK for C++ to use TLS 1.2 or later. We recommend using TLS 1.3.

The Amazon SDK for C++ is a cross-platform library. You can build and run your application on the platforms you want. Different platforms might depend on different underlying HTTP clients.

By default, macOS, Linux, Android and other non-Windows platforms use libcurl. If the libcurl version is later than 7.34.0, TLS 1.0 is the minimum version used by the underlying HTTP clients.

For Windows, the default library is WinHttp. Windows decides the actual protocol to use among the TLS 1.0, TLS 1.1, TLS 1.2, and TLS 1.3 protocols available. WinINet and IXMLHttpRequest2 are the other two options that are available on Windows. You can configure your application to replace the default library during CMake and at runtime. For these two HTTP clients, Windows also decides the secure protocol.

The Amazon SDK for C++ also provides the flexibility to override the default HTTP clients. For example, you can enforce libcurl or use whatever HTTP clients you want by using a custom HTTP client factory. So to use TLS 1.2 as the minimum version, you must be aware of the HTTP client library you’re using.

Enforce specific TLS version with libcurl on all platforms

This section assumes that the Amazon SDK for C++ is using libcurl as a dependency for HTTP protocol support. To explicitly specify the TLS version, you will need a minimum libcurl version of 7.34.0. In addition, you might need to modify the source code of the Amazon SDK for C++ and then rebuild it.

The following procedure shows you how to perform these tasks.

To enforce TLS 1.2 with libcurl

  1. Verify that your installation of libcurl is at least version 7.34.0.

  2. Download the source code for the Amazon SDK for C++ from GitHub.

  3. Open aws-cpp-sdk-core/source/http/curl/CurlHttpClient.cpp and find the following lines of code.

    #if LIBCURL_VERSION_MAJOR >= 7 #if LIBCURL_VERSION_MINOR >= 34 curl_easy_setopt(connectionHandle, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1); #endif //LIBCURL_VERSION_MINOR #endif //LIBCURL_VERSION_MAJOR
  4. If necessary, change the last parameter in the function call as follows.

    #if LIBCURL_VERSION_MAJOR >= 7 #if LIBCURL_VERSION_MINOR >= 34 curl_easy_setopt(connectionHandle, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_2); #endif //LIBCURL_VERSION_MINOR #endif //LIBCURL_VERSION_MAJOR
  5. If you performed the preceding code changes, build and install the Amazon SDK for C++ according to the instructions at https://github.com/aws/aws-sdk-cpp#building-the-sdk.

  6. For the service client in your application, enable verifySSL in its client configuration, if this option isn’t already enabled.

To enforce TLS 1.3 with libcurl

To enforce TLS 1.3, follow the steps in the preceding section setting the CURL_SSLVERSION_TLSv1_3 option instead of CURL_SSLVERSION_TLSv1_2.

Enforce specific TLS version on Windows

The following procedures show you how to enforce TLS 1.2 or TLS 1.3 with WinHttp, WinINet, or IXMLHTTPRequest2.

Prerequisite: Determine Windows TLS support

To enforce TLS 1.2 or TLS 1.3 with WinHttp

WinHttp provides an API to explicitly set the acceptable secure protocols. However, to make this configurable at runtime, you need to modify the source code of the Amazon SDK for C++ and then rebuild it.

  1. Download the source code for the Amazon SDK for C++ from GitHub.

  2. Open aws-cpp-sdk-core/source/http/windows/WinHttpSyncHttpClient.cpp and find the following lines of code.

    #if defined(WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_3) DWORD flags = WINHTTP_FLAG_SECURE_PROTOCOL_TLS1 | WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_1 | WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_2 | WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_3; #else DWORD flags = WINHTTP_FLAG_SECURE_PROTOCOL_TLS1 | WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_1 | WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_2; #endif if (!WinHttpSetOption(GetOpenHandle(), WINHTTP_OPTION_SECURE_PROTOCOLS, &flags, sizeof(flags))) { AWS_LOGSTREAM_FATAL(GetLogTag(), "Failed setting secure crypto protocols with error code: " << GetLastError()); }

    The WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_3 option flag is defined if TLS 1.3 is present on the current build system. For more information, see WINHTTP_OPTION_SECURE_PROTOCOLS and TLS protocol version support on the Microsoft website.

  3. Choose one of the following:

    • To enforce TLS 1.2:

      Under the #else directive, change the value of the flags variable, as follows.

      DWORD flags = WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_2;
    • To enforce TLS 1.3:

      Under the #if defined(WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_3) directive, change the value of the flags variable, as follows.

      DWORD flags = WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_3;
  4. If you performed the preceding code changes, build and install the Amazon SDK for C++ according to the instructions at https://github.com/aws/aws-sdk-cpp#building-the-sdk.

  5. For the service client in your application, enable verifySSL in its client configuration, if this option isn’t already enabled.

To enforce TLS 1.2 with WinINet and IXMLHTTPRequest2

There is no API to specify the secure protocol for the WinINet and IXMLHTTPRequest2 libraries. So the Amazon SDK for C++ uses the default for the operating system. You can update the Windows registry to enforce the use of TLS 1.2, as shown in the following procedure. Be advised, however, that the result is a global change that impacts all applications that depend on Schannel.

  1. Open Registry Editor and go to Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols.

  2. If they don’t already exist, create the following subkeys: TLS 1.0,, TLS 1.1, and TLS 1.2.

  3. Under each of the subkeys, create a Client subkey and a Server subkey.

  4. Create the following keys and values.

    Key name Key type Value -------- --------- ----- TLS 1.0\Client\DisabledByDefault DWORD 0 TLS 1.1\Client\DisabledByDefault DWORD 0 TLS 1.2\Client\DisabledByDefault DWORD 0 TLS 1.0\Client\Enabled DWORD 0 TLS 1.1\Client\Enabled DWORD 0 TLS 1.2\Client\Enabled DWORD 1

    Notice that TLS 1.2\Client\Enabled is the only key that’s set to 1. Setting this key to 1 enforces TLS 1.2 as the only acceptable secure protocol.

To enforce TLS 1.3 with WinINet and IXMLHTTPRequest2

There is no API to specify the secure protocol for the WinINet and IXMLHTTPRequest2 libraries. So the Amazon SDK for C++ uses the default for the operating system. You can update the Windows registry to enforce the use of TLS 1.3, as shown in the following procedure. Be advised, however, that the result is a global change that impacts all applications that depend on Schannel.

  1. Open Registry Editor and go to Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols.

  2. If they don’t already exist, create the following subkeys: TLS 1.0,, TLS 1.1, TLS 1.2 and TLS 1.3.

  3. Under each of the subkeys, create a Client subkey and a Server subkey.

  4. Create the following keys and values.

    Key name Key type Value -------- --------- ----- TLS 1.0\Client\DisabledByDefault DWORD 0 TLS 1.1\Client\DisabledByDefault DWORD 0 TLS 1.2\Client\DisabledByDefault DWORD 0 TLS 1.3\Client\DisabledByDefault DWORD 0 TLS 1.0\Client\Enabled DWORD 0 TLS 1.1\Client\Enabled DWORD 0 TLS 1.2\Client\Enabled DWORD 0 TLS 1.3\Client\Enabled DWORD 1

    Notice that TLS 1.3\Client\Enabled is the only key that’s set to 1. Setting this key to 1 enforces TLS 1.3 as the only acceptable secure protocol.