Skip to content

Commit c859aa7

Browse files
committedSep 8, 2023
Fix enforce TLS version
1 parent acc3e9b commit c859aa7

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed
 

‎CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ if (LEGACY_BUILD)
8080
if (DISABLE_INTERNAL_IMDSV1_CALLS)
8181
add_definitions(-DDISABLE_IMDSV1)
8282
endif ()
83-
if (USE_TLS_V2)
83+
if (USE_TLS_V1_2)
8484
add_definitions(-DENFORCE_TLS_V1_2)
8585
endif ()
86-
if (USE_TLS_V3)
86+
if (USE_TLS_V1_3)
8787
add_definitions(-DENFORCE_TLS_V1_3)
8888
endif ()
8989

‎src/aws-cpp-sdk-core/source/http/curl/CurlHttpClient.cpp

+2-6
Original file line numberDiff line numberDiff line change
@@ -699,17 +699,13 @@ std::shared_ptr<HttpResponse> CurlHttpClient::MakeRequest(const std::shared_ptr<
699699
curl_easy_setopt(connectionHandle, CURLOPT_SSL_VERIFYPEER, 1L);
700700
curl_easy_setopt(connectionHandle, CURLOPT_SSL_VERIFYHOST, 2L);
701701

702-
#if LIBCURL_VERSION_MAJOR >= 7
703-
#if LIBCURL_VERSION_MINOR >= 34
704-
#if defined(ENFORCE_TLS_V1_3)
702+
#if defined(ENFORCE_TLS_V1_3) && LIBCURL_VERSION_NUM >= 0x073400 // 7.52.0
705703
curl_easy_setopt(connectionHandle, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_3);
706-
#elif defined(ENFORCE_TLS_V1_2)
704+
#elif defined(ENFORCE_TLS_V1_2) && LIBCURL_VERSION_NUM >= 0x072200 // 7.34.0
707705
curl_easy_setopt(connectionHandle, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_2);
708706
#else
709707
curl_easy_setopt(connectionHandle, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
710708
#endif
711-
#endif //LIBCURL_VERSION_MINOR
712-
#endif //LIBCURL_VERSION_MAJOR
713709
}
714710
else
715711
{

0 commit comments

Comments
 (0)
Please sign in to comment.