Skip to content

Commit

Permalink
Enhanced Security Protocol to TLS (#24436)
Browse files Browse the repository at this point in the history
  • Loading branch information
adkharat authored Jan 27, 2025
1 parent 45d4d00 commit 85259c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public Optional<SSLContext> buildSslContext()

X509TrustManager trustManager = (X509TrustManager) trustManagers[0];
// create SSLContext
SSLContext result = SSLContext.getInstance("SSL");
SSLContext result = SSLContext.getInstance("TLS");
result.init(keyManagers, new TrustManager[] {trustManager}, null);
return Optional.of(result);
}
Expand Down

0 comments on commit 85259c3

Please sign in to comment.